Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
301 Moved Permanently - felwt.com
HTTP Status: 301
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.26.3
Date: Tue, 13 May 2025 15:13:10 GMT
Content-Type: text/html
Content-Length: 169
Connection: keep-alive
Location: https://felwt.com/

HTTP Code 301 Moved Permanently

301 Moved Permanently means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.

When is Code 301 used?

  • When changing a website domain
  • When modifying URL structures
  • When setting up redirects for SEO

What does Code 301 mean for the user?

The browser will automatically redirect the user to the new address, and search engines will update their indexes.

200 OK - https://felwt.com/
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Server: nginx/1.26.3
Date: Tue, 13 May 2025 15:13:10 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: PHPSESSID=oi5n7ep96lfinmid48bm458akj; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Vary: Accept-Encoding

HTTP Code 200 OK

200 OK is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: felwt.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
    <title>Gurume Publishing Survey | Share Your Food Media Feedback</title>
    <meta name="description" content="Help Gurume Publishing Co., Ltd. create better food magazines, cookbooks, and digital content by sharing your valuable feedback in our quick survey.">
    <meta name="keywords" content="Gurume Publishing, food media, survey, feedback, food magazine, cookbook, gastronomy, culinary, publishing, Japan, Tokyo, food content">
    
    <!-- Open Graph / Facebook -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="[Your Landing Page URL]">
    <meta property="og:title" content="Gurume Publishing Survey">
    <meta property="og:description" content="Share Your Food Media Feedback">
    <meta property="og:image" content="images/og-image-gurume.jpeg">
    
    <!-- Google Fonts -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">

    <!-- Tailwind CSS -->
    <script src="https://cdn.tailwindcss.com?v=3.0.3"></script>
    
    <!-- Custom Styles -->
    <style>
        :root {
            --color-primary: #2F4F4F; /* Dark Slate Gray */
            --color-secondary: #C0C0C0; /* Silver */
            --color-accent: #B22222; /* Firebrick */
            --color-text: #333333; /* Dark Gray */
            --color-background: #F8F8F8; /* Light Gray */
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--color-text);
            background-color: var(--color-background);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700; /* Bold */
        }

        .text-shadow-hero {
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }

        .diagonal-section {
            position: relative;
            padding-bottom: 8rem; /* Adjust as needed */
        }

        .diagonal-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8rem; /* Should match padding-bottom */
            background: inherit; /* Inherit background or set explicitly */
            transform: skewY(-2deg);
            transform-origin: bottom right;
            z-index: 1;
        }
         .diagonal-section-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8rem; /* Should match padding-top */
            background: inherit; /* Inherit background or set explicitly */
            transform: skewY(-2deg);
            transform-origin: top left;
            z-index: 1;
        }


        .hover-3d-tilt {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .hover-3d-tilt:hover {
            transform: rotateX(5deg) rotateY(5deg) scale(1.03);
        }
        
        .gradient-border {
            border: 3px solid transparent;
            border-image: linear-gradient(45deg, var(--color-accent), var(--color-primary)) 1;
        }

         .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

         /* Tailwind Configuration */
        /* This configuration is injected by the CDN script, but defining it here
           as a comment helps visualize what's being configured based on JSON */
        /*
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: 'var(--color-primary)',
                        secondary: 'var(--color-secondary)',
                        accent: 'var(--color-accent)',
                        text: 'var(--color-text)',
                        background: 'var(--color-background)',
                    },
                    fontFamily: {
                        heading: ['Montserrat', 'sans-serif'],
                        body: ['Roboto', 'sans-serif'],
                    },
                }
            }
        }
        */

        /* Mobile touch target sizing (Tailwind default padding handles this well for buttons) */
        /* Ensure padding on interactive elements like links/buttons */
        .min-touch-target {
             min-width: 44px;
             min-height: 44px;
             display: inline-flex;
             align-items: center;
             justify-content: center;
        }

        /* Custom mobile menu toggle */
        #mobile-menu {
            display: none; /* Hidden by default */
        }

        @media (max-width: 767px) { /* Adjust breakpoint as needed, md in Tailwind is 768px */
            #mobile-menu.active {
                display: block; /* Show when active */
            }
             .diagonal-section::after, .diagonal-section-top::before {
                 height: 4rem; /* Smaller diagonal on mobile */
             }
             .diagonal-section {
                 padding-bottom: 4rem;
             }
             .diagonal-section-top {
                 padding-top: 4rem;
             }
        }
         
         /* Style for cookie banner */
        #cookieConsentBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--color-primary);
            color: white;
            padding: 1rem;
            text-align: center;
            z-index: 1000;
            display: none; /* Hidden by default */
        }
        #cookieConsentBanner button {
            background-color: var(--color-accent);
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.25rem;
            cursor: pointer;
            margin-left: 1rem;
        }

    </style>
</head>
<body class="font-body text-text">

    <!-- Sticky Navigation -->
    <header class="bg-background shadow-md sticky top-0 z-50">
        <nav class="container mx-auto px-4 py-4 flex justify-between items-center">
            <div class="flex items-center space-x-4">
                 <img src="images/gurume-logo-placeholder.jpeg" alt="Gurume Publishing Co., Ltd. Logo" width="192" height="96" class="h-10 w-auto object-contain">
                <a href="#" class="text-xl font-heading text-primary hidden md:block">Gurume Publishing</a>
            </div>
            
            <!-- Desktop Navigation -->
            <ul class="hidden md:flex space-x-6">
                <li><a href="#hero" class="hover:text-accent transition duration-300">Home</a></li>
                <li><a href="#about" class="hover:text-accent transition duration-300">About Us</a></li>
                <li><a href="#services_overview" class="hover:text-accent transition duration-300">Services</a></li>
                <li><a href="#featured_content" class="hover:text-accent transition duration-300">Featured</a></li>
                <li><a href="#the_survey" class="hover:text-accent transition duration-300">Survey</a></li>
                <li><a href="#contact" class="hover:text-accent transition duration-300">Contact</a></li>
            </ul>
            
            <!-- Mobile Hamburger Menu -->
            <div class="md:hidden">
                <button id="mobile-menu-button" class="text-primary focus:outline-none min-touch-target" aria-label="Open mobile menu">
                    <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path></svg>
                </button>
            </div>
        </nav>
        
        <!-- Mobile Menu Content -->
        <div id="mobile-menu" class="md:hidden bg-background shadow-lg pb-4">
            <ul class="flex flex-col items-center space-y-4">
                 <li><a href="#hero" class="block py-2 hover:text-accent transition duration-300 min-touch-target">Home</a></li>
                <li><a href="#about" class="block py-2 hover:text-accent transition duration-300 min-touch-target">About Us</a></li>
                <li><a href="#services_overview" class="block py-2 hover:text-accent transition duration-300 min-touch-target">Services</a></li>
                <li><a href="#featured_content" class="block py-2 hover:text-accent transition duration-300 min-touch-target">Featured</a></li>
                <li><a href="#the_survey" class="block py-2 hover:text-accent transition duration-300 min-touch-target">Survey</a></li>
                <li><a href="#contact" class="block py-2 hover:text-accent transition duration-300 min-touch-target">Contact</a></li>
            </ul>
        </div>
    </header>

    <main>
        <!-- Hero Section -->
        <section id="hero" class="relative h-screen flex items-center justify-center text-center text-white overflow-hidden">
            <div class="absolute inset-0 bg-cover bg-center" style="background-image: url('images/hero-food-magazine.jpeg');">
                <div class="absolute inset-0 bg-black opacity-40"></div>
            </div>
            <div class="relative z-10 p-8 max-w-3xl mx-auto">
                <h1 class="text-4xl md:text-6xl font-heading text-shadow-hero mb-4">Share Your Taste: Help Shape the Future of Food Media</h1>
                <p class="text-lg md:text-xl mb-8 text-shadow-hero">Your insights are invaluable to Gurume Publishing. Participate in our brief survey and influence our next publications, ensuring we continue to deliver content that truly matters to you.</p>
                <a href="#the_survey" class="bg-accent text-white font-bold py-3 px-8 rounded-full hover:bg-red-700 transition duration-300 inline-block text-lg min-touch-target">Start Survey Now</a>
            </div>
        </section>

        <!-- Purpose Explanation Section -->
        <section id="purpose_explanation" class="py-16 px-4 container mx-auto text-center diagonal-section bg-background">
            <div class="flex flex-col md:flex-row items-center max-w-4xl mx-auto">
                 <!-- Image on Desktop, hidden on Mobile -->
                <div class="md:w-1/3 hidden md:block md:mr-8 floating-element">
                    <img src="images/purpose-ingredients.jpeg" alt="Close-up of fresh ingredients being prepared" width="512" height="384" class="rounded-lg shadow-lg w-full h-auto object-cover">
                </div>
                <!-- Text Content -->
                <div class="md:w-2/3">
                    <h2 class="text-3xl md:text-4xl font-heading text-primary mb-6">Your Voice, Our Recipe for Success</h2>
                    <p class="text-lg text-text leading-relaxed">At Gurume Publishing Co., Ltd., we are profoundly dedicated to exploring and celebrating the rich tapestry of global gastronomy. Our commitment is to bring you the most engaging, insightful, and visually stunning content, whether through our award-winning magazines, essential cookbooks, or dynamic digital platforms. But our journey isn't just about what *we* create; it's about what *you*, our cherished readers and community members, crave and connect with. Your experiences, preferences, and unique insights are the crucial ingredients that guide our editorial compass.</p>
                     <p class="text-lg text-text leading-relaxed mt-4">From identifying emerging culinary trends for our magazine features to conceptualizing entirely new cookbook series and digital content formats, your feedback directly influences the flavours and stories we choose to highlight. By generously taking a few minutes to share your thoughts through this survey, you don't just participate; you actively help us craft content that truly resonates with your personal culinary passions and interests. Think of it as collaborative gastronomy – you provide the essential feedback, and we use it to cook up even better media. Thank you for being a vital, appreciated ingredient in our ongoing publishing adventure and for helping us continue to set the table for inspiring food media.</p>
                </div>
            </div>
        </section>
         <!-- Diagonal End Cap for Purpose Section -->
        <div class="relative w-full" style="height: 8rem; background-color: var(--color-background);"></div>


        <!-- About Section -->
        <section id="about" class="py-16 px-4 container mx-auto diagonal-section diagonal-section-top bg-secondary relative z-10">
            <div class="flex flex-col md:flex-row items-center max-w-5xl mx-auto">
                <!-- Image on Desktop, Top on Mobile -->
                 <div class="md:w-1/2 mb-8 md:mb-0 md:mr-12">
                    <img src="images/about-team.jpeg" alt="Diverse Gurume Publishing team collaborating in a modern office" width="640" height="480" class="rounded-lg shadow-lg w-full h-auto object-cover border-4 border-accent">
                 </div>
                <!-- Text Content -->
                <div class="md:w-1/2">
                    <h2 class="text-3xl md:text-4xl font-heading text-primary mb-6">Crafting Stories from Plate to Page</h2>
                    <p class="text-lg text-text leading-relaxed mb-4">For over 25 years, Gurume Publishing Co., Ltd. has proudly stood as a leading voice and tastemaker in the dynamic world of Japanese and international gastronomy. Founded in the heart of Tokyo, our company was built on a profound passion for culinary traditions, a keen eye for innovation, and a desire to forge meaningful connections among food lovers everywhere. We achieve this by producing captivating magazines that delve deep into culinary culture, publishing essential cookbooks that become kitchen staples, and creating vibrant digital content that inspires daily cooking and exploration.</p>
                    <p class="text-lg text-text leading-relaxed mb-4">Our strength lies in our dedicated team, a diverse group comprising experienced editors with deep culinary knowledge, internationally recognized food photographers who capture the essence of every dish, and culinary experts who bring invaluable insight into trends and techniques. Together, we are united by a shared commitment to quality, authenticity, and delivering content that not only informs but also delights and inspires. We firmly believe that every dish, every ingredient, and every meal holds a story waiting to be told, and our mission is to meticulously craft and share these narratives with you.</p>
                    <p class="text-lg font-bold text-accent leading-relaxed">Our mission is singular and clear: to enrich lives and cultivate a deeper appreciation for the world by celebrating and exploring the universal language of food.</p>
                </div>
            </div>
        </section>
        <!-- Diagonal End Cap for About Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-secondary);"></div>


        <!-- Services Section -->
        <section id="services_overview" class="py-16 px-4 container mx-auto bg-background diagonal-section relative z-10">
            <h2 class="text-3xl md:text-4xl font-heading text-primary text-center mb-12">Our Culinary Creations & Services</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
                
                 <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-magazine.jpeg" alt="Stylized image representing a magazine publication" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Food Magazine Publication</h3>
                    <p class="text-text leading-relaxed">We produce acclaimed food magazines, delve into global culinary trends, feature in-depth articles, provide exquisite recipes, and explore cultural connections to food. Our publications are a feast for the eyes and the mind.</p>
                 </div>

                 <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-cookbook.jpeg" alt="Stylized image representing a cookbook" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Cookbook Development & Publishing</h3>
                    <p class="text-text leading-relaxed">Collaborating with celebrated chefs, emerging talents, and food writers, we develop and publish beautifully crafted cookbooks that become indispensable guides for home cooks and professionals alike. Rigorously tested recipes and stunning photography are our hallmarks.</p>
                 </div>

                 <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-digital.jpeg" alt="Stylized image representing digital food content" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Digital Gastronomy Content Creation</h3>
                    <p class="text-text leading-relaxed">Beyond print, we create engaging digital content including articles, video series, interactive guides, and social media features, bringing the world of food to life online for a dynamic, connected audience.</p>
                 </div>

                 <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-event.jpeg" alt="Stylized image representing a culinary event" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Culinary Event Planning & Management</h3>
                    <p class="text-text leading-relaxed">Leveraging our industry connections, we plan and manage culinary events, from book launches and cooking demonstrations to food festivals, bringing the community together to celebrate taste and talent.</p>
                 </div>
                 
                  <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-photography.jpeg" alt="Stylized image representing food photography" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Food Photography Services</h3>
                    <p class="text-text leading-relaxed">Our in-house team of award-winning food photographers provides world-class photography services for our publications and external clients, ensuring every dish looks as delicious as it tastes.</p>
                 </div>

                  <div class="bg-white p-6 rounded-lg shadow-md text-center hover-3d-tilt transition duration-300">
                    <img src="images/service-advertising.jpeg" alt="Stylized image representing advertising" width="96" height="96" class="mx-auto mb-4 object-cover rounded-full border-2 border-secondary">
                    <h3 class="text-xl font-heading text-primary mb-3">Advertising Sales for F&B Sector</h3>
                    <p class="text-text leading-relaxed">We offer tailored advertising solutions for food and beverage brands looking to reach a highly engaged audience through our print and digital platforms, connecting businesses with passionate consumers.</p>
                 </div>

            </div>
        </section>
         <!-- Diagonal End Cap for Services Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-background);"></div>


        <!-- Featured Content Section -->
         <section id="featured_content" class="py-16 px-4 bg-primary text-white diagonal-section diagonal-section-top relative z-10">
            <div class="container mx-auto text-center">
                <h2 class="text-3xl md:text-4xl font-heading text-secondary mb-12">Peek Inside Our Latest Releases</h2>
                <!-- Placeholder for a simple grid/flex layout instead of a complex carousel -->
                <div class="flex flex-col md:flex-row justify-center items-center gap-8">
                     <div class="bg-white text-text rounded-lg shadow-md overflow-hidden max-w-sm w-full md:w-1/3 hover:scale-105 transition-transform duration-300">
                        <img src="images/featured-magazine.jpeg" alt="Cover of Gastronomy Quarterly magazine, Spring Issue" width="320" height="416" class="w-full h-72 object-cover">
                        <div class="p-4">
                            <h3 class="text-xl font-heading text-primary mb-2">Gastronomy Quarterly - Spring Issue</h3>
                            <p class="text-sm leading-relaxed">Discover the rich traditions and innovative trends of regional Japanese cuisine. This issue features exclusive interviews, stunning food photography, and authentic recipes from across the country. A deep dive into the heart of Japan's diverse culinary landscape.</p>
                        </div>
                    </div>

                     <div class="bg-white text-text rounded-lg shadow-md overflow-hidden max-w-sm w-full md:w-1/3 hover:scale-105 transition-transform duration-300">
                        <img src="images/featured-cookbook.jpeg" alt="Cover of The Art of Bento Box Cookbook" width="320" height="416" class="w-full h-72 object-cover">
                        <div class="p-4">
                            <h3 class="text-xl font-heading text-primary mb-2">The Art of Bento Box Cookbook</h3>
                            <p class="text-sm leading-relaxed">Unlock the secrets to creating beautiful, balanced, and delicious bento boxes for every occasion. This comprehensive guide covers both traditional techniques and modern, creative approaches, perfect for meal prep or special lunches.</p>
                        </div>
                    </div>

                     <div class="bg-white text-text rounded-lg shadow-md overflow-hidden max-w-sm w-full md:w-1/3 hover:scale-105 transition-transform duration-300">
                        <img src="images/featured-digital.jpeg" alt="Screenshot from Kitchen Hacks digital series showing a cooking tip" width="320" height="256" class="w-full h-72 object-cover">
                        <div class="p-4">
                            <h3 class="text-xl font-heading text-primary mb-2">Digital Series: Kitchen Hacks</h3>
                            <p class="text-sm leading-relaxed">Watch our popular 'Kitchen Hacks' video series online! Quick, easy, and incredibly useful tips and tricks to make your time in the kitchen more efficient and enjoyable. Master fundamental techniques and discover clever shortcuts from our culinary experts.</p>
                        </div>
                    </div>
                </div>
            </div>
        </section>
         <!-- Diagonal End Cap for Featured Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-primary);"></div>


         <!-- Why Participate Section -->
        <section id="why_participate" class="py-16 px-4 container mx-auto bg-background diagonal-section relative z-10">
            <div class="max-w-4xl mx-auto text-center">
                <h2 class="text-3xl md:text-4xl font-heading text-primary mb-12">Why Your Feedback Matters: Your Direct Impact</h2>
                <div class="flex flex-col md:flex-row items-center md:space-x-8">
                     <div class="md:w-1/3 mb-8 md:mb-0 floating-element">
                        <img src="images/impact-icon.jpeg" alt="Icon representing feedback and positive impact" width="128" height="128" class="mx-auto object-cover rounded-full border-2 border-secondary">
                    </div>
                    <div class="md:w-2/3 text-left">
                        <p class="text-lg text-text leading-relaxed mb-6">Your opinion is a crucial ingredient in the future of Gurume Publishing. By sharing your thoughts, you gain the power to influence the content we create and how we deliver it. Specifically, your participation allows you to:</p>
                        <ul class="list-disc list-inside text-lg text-text leading-relaxed space-y-3">
                            <li>Directly influence the topics, themes, and features that appear in future magazine articles, ensuring we cover what excites you most.</li>
                            <li>Help us identify the most sought-after subjects for new cookbooks and guide us in developing digital content that aligns with your learning and entertainment preferences.</li>
                            <li>Share your preferences for the types of culinary events and experiences you'd like us to organize, bringing the community together in ways that matter to you.</li>
                            <li>Contribute to shaping our digital platforms, helping us make them more user-friendly, informative, and tailored to your interests and engagement habits.</li>
                            <li>Ensure that our content consistently stays relevant, inspiring, valuable, and continues to meet your high expectations as a member of our passionate food community.</li>
                        </ul>
                    </div>
                </div>
            </div>
        </section>
         <!-- Diagonal End Cap for Why Participate Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-background);"></div>


        <!-- Survey Section -->
        <section id="the_survey" class="py-16 px-4 container mx-auto bg-secondary diagonal-section diagonal-section-top relative z-10">
            <div class="max-w-3xl mx-auto text-center">
                <h2 class="text-3xl md:text-4xl font-heading text-primary mb-6">Complete Our Quick Survey</h2>
                <p class="text-lg text-text leading-relaxed mb-8">Thank you for investing your time in helping Gurume Publishing grow and evolve. This survey is designed to be brief, focusing on key areas of your food media consumption and interests. It should take only about <span class="font-bold">[Estimated Time - e.g., 5]</span> minutes to complete. Your candid responses are invaluable.</p>

                <form class="bg-white p-8 rounded-lg shadow-lg text-left space-y-6">
                    <div>
                        <label for="name" class="block text-sm font-bold text-primary mb-2">Your Name (Optional)</label>
                        <input type="text" id="name" name="name" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-accent">
                    </div>
                    <div>
                        <label for="email" class="block text-sm font-bold text-primary mb-2">Your Email (Optional)</label>
                        <input type="email" id="email" name="email" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-accent">
                    </div>
                    <div>
                        <label for="cuisine" class="block text-sm font-bold text-primary mb-2">What is your favorite type of cuisine?</label>
                        <input type="text" id="cuisine" name="cuisine" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-accent">
                    </div>
                     <div>
                        <label for="topics" class="block text-sm font-bold text-primary mb-2">What topics would you like to see covered in our magazine?</label>
                        <textarea id="topics" name="topics" rows="4" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-accent"></textarea>
                    </div>
                    <div>
                        <label class="block text-sm font-bold text-primary mb-2">What kind of cookbooks are you interested in?</label>
                        <div class="flex flex-col space-y-2">
                             <label class="inline-flex items-center"><input type="checkbox" name="cookbooks[]" value="traditional_japanese" class="form-checkbox text-accent mr-2 rounded min-touch-target"> Traditional Japanese</label>
                            <label class="inline-flex items-center"><input type="checkbox" name="cookbooks[]" value="international_dishes" class="form-checkbox text-accent mr-2 rounded min-touch-target"> International Dishes</label>
                            <label class="inline-flex items-center"><input type="checkbox" name="cookbooks[]" value="baking" class="form-checkbox text-accent mr-2 rounded min-touch-target"> Baking</label>
                            <label class="inline-flex items-center"><input type="checkbox" name="cookbooks[]" value="healthy_eating" class="form-checkbox text-accent mr-2 rounded min-touch-target"> Healthy Eating</label>
                            <label class="inline-flex items-center"><input type="checkbox" name="cookbooks[]" value="quick_easy" class="form-checkbox text-accent mr-2 rounded min-touch-target"> Quick & Easy</label>
                        </div>
                    </div>
                    <div>
                        <label class="block text-sm font-bold text-primary mb-2">How often do you engage with food media (magazines, websites, videos, etc.)?</label>
                        <div class="flex flex-col space-y-2">
                            <label class="inline-flex items-center"><input type="radio" name="frequency" value="daily" class="form-radio text-accent mr-2 rounded-full min-touch-target"> Daily</label>
                            <label class="inline-flex items-center"><input type="radio" name="frequency" value="weekly" class="form-radio text-accent mr-2 rounded-full min-touch-target"> Weekly</label>
                            <label class="inline-flex items-center"><input type="radio" name="frequency" value="monthly" class="form-radio text-accent mr-2 rounded-full min-touch-target"> Monthly</label>
                            <label class="inline-flex items-center"><input type="radio" name="frequency" value="rarely" class="form-radio text-accent mr-2 rounded-full min-touch-target"> Rarely</label>
                        </div>
                    </div>
                     <div>
                        <label for="other_feedback" class="block text-sm font-bold text-primary mb-2">Any other feedback or suggestions for Gurume Publishing?</label>
                        <textarea id="other_feedback" name="other_feedback" rows="4" class="w-full px-4 py-2 border rounded-md focus:outline-none focus:ring-2 focus:ring-accent"></textarea>
                    </div>

                    <div class="text-center">
                        <button type="submit" class="bg-accent text-white font-bold py-3 px-8 rounded-full hover:bg-red-700 transition duration-300 text-lg min-touch-target">Submit Feedback</button>
                    </div>
                    
                    <p class="text-center text-sm text-gray-600 mt-4">Your responses are confidential and will be used solely for improving Gurume Publishing content and services. Providing your name and email is entirely optional.</p>
                </form>
            </div>
        </section>
         <!-- Diagonal End Cap for Survey Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-secondary);"></div>


        <!-- Testimonials Section -->
        <section id="testimonials" class="py-16 px-4 container mx-auto bg-background diagonal-section relative z-10">
            <h2 class="text-3xl md:text-4xl font-heading text-primary text-center mb-12">Voices from Our Community</h2>
             <!-- Using a simple grid instead of a complex carousel -->
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
                 <div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300 gradient-border">
                    <img src="images/testimonial-aiko.jpeg" alt="Photo of Aiko Tanaka" width="96" height="96" class="rounded-full mb-4 object-cover border-2 border-accent">
                    <p class="italic text-text leading-relaxed mb-4">"Gurume's magazine is a constant source of inspiration. Every issue features fascinating stories and incredible recipes from around the world. It's a beautiful publication and a must-read for any true food lover!"</p>
                    <p class="font-bold text-primary">- Aiko Tanaka</p>
                    <p class="text-sm text-gray-600">Food Blogger, Tokyo</p>
                </div>

                 <div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300 gradient-border">
                    <img src="images/testimonial-kenji.jpeg" alt="Photo of Kenji Sato" width="96" height="96" class="rounded-full mb-4 object-cover border-2 border-accent">
                    <p class="italic text-text leading-relaxed mb-4">"The cookbooks published by Gurume are simply outstanding. They are not only beautifully designed with stunning photography but also incredibly practical with clear, reliable recipes. My kitchen wouldn't be the same without them!"</p>
                    <p class="font-bold text-primary">- Kenji Sato</p>
                    <p class="text-sm text-gray-600">Passionate Home Cook, Osaka</p>
                </div>

                 <div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300 gradient-border">
                    <img src="images/testimonial-maria.jpeg" alt="Photo of Maria Garcia" width="96" height="96" class="rounded-full mb-4 object-cover border-2 border-accent">
                    <p class="italic text-text leading-relaxed mb-4">"Partnering with Gurume Publishing for our latest advertising campaign was a truly seamless and effective experience. Their team deeply understands the food industry landscape and connected us with precisely the audience we wanted to reach."</p>
                    <p class="font-bold text-primary">- Maria Garcia</p>
                    <p class="text-sm text-gray-600">Marketing Manager, Global Food Brand</p>
                </div>
                 <div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300 gradient-border">
                    <img src="images/testimonial-yuki.jpeg" alt="Photo of Yuki Nakamura" width="96" height="96" class="rounded-full mb-4 object-cover border-2 border-accent">
                    <p class="italic text-text leading-relaxed mb-4">"I love Gurume's digital content! The articles are always insightful, and the video series are super helpful and entertaining. It's my go-to resource for staying updated on culinary trends."</p>
                    <p class="font-bold text-primary">- Yuki Nakamura</p>
                    <p class="text-sm text-gray-600">Digital Content Enthusiast, Yokohama</p>
                </div>
                 <div class="bg-white p-6 rounded-lg shadow-md flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300 gradient-border">
                    <img src="images/testimonial-takeshi.jpeg" alt="Photo of Takeshi Kobayashi" width="96" height="96" class="rounded-full mb-4 object-cover border-2 border-accent">
                    <p class="italic text-text leading-relaxed mb-4">"Attending a culinary event organized by Gurume Publishing was a fantastic experience. It was perfectly managed, brought together amazing people, and celebrated food in such a special way. Highly recommended!"</p>
                    <p class="font-bold text-primary">- Takeshi Kobayashi</p>
                    <p class="text-sm text-gray-600">Culinary Event Attendee, Kyoto</p>
                </div>
            </div>
        </section>
         <!-- Diagonal End Cap for Testimonials Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-background);"></div>


        <!-- Team Section -->
        <section id="team" class="py-16 px-4 bg-primary text-white diagonal-section diagonal-section-top relative z-10">
            <div class="container mx-auto text-center">
                <h2 class="text-3xl md:text-4xl font-heading text-secondary mb-12">The Passion Behind the Pages</h2>
                 <p class="text-lg text-white leading-relaxed mb-12 max-w-3xl mx-auto">Meet some of the dedicated individuals who pour their expertise, creativity, and love for food into everything Gurume Publishing produces. We're a diverse team united by a shared vision: to create compelling content that celebrates the art and science of gastronomy.</p>
                <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto">
                     <div class="bg-white text-text rounded-lg shadow-md p-6 flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300">
                        <img src="images/team-sakura.jpeg" alt="Headshot of Sakura Yamamoto, Editor-in-Chief" width="160" height="192" class="rounded-full mb-4 object-cover border-4 border-accent">
                        <h3 class="text-xl font-heading text-primary mb-2">Sakura Yamamoto</h3>
                        <p class="text-sm font-bold text-gray-600 mb-3">Editor-in-Chief</p>
                        <p class="text-text leading-relaxed">With two decades in food media, Sakura brings unparalleled editorial acumen and a deep understanding of global culinary narratives. She meticulously shapes our publications, ensuring they resonate with quality and authenticity.</p>
                    </div>

                     <div class="bg-white text-text rounded-lg shadow-md p-6 flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300">
                        <img src="images/team-hiroshi.jpeg" alt="Headshot of Hiroshi Tanaka, Creative Director" width="160" height="192" class="rounded-full mb-4 object-cover border-4 border-accent">
                        <h3 class="text-xl font-heading text-primary mb-2">Hiroshi Tanaka</h3>
                        <p class="text-sm font-bold text-gray-600 mb-3">Creative Director</p>
                        <p class="text-text leading-relaxed">Hiroshi is the visual architect behind our stunning layouts and breathtaking food photography. His artistic vision captures the essence of food, making every page and digital piece a visual delight.</p>
                    </div>

                     <div class="bg-white text-text rounded-lg shadow-md p-6 flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300">
                        <img src="images/team-mei.jpeg" alt="Headshot of Mei Ling Chen, Culinary Consultant" width="160" height="192" class="rounded-full mb-4 object-cover border-4 border-accent">
                        <h3 class="text-xl font-heading text-primary mb-2">Mei Ling Chen</h3>
                        <p class="text-sm font-bold text-gray-600 mb-3">Culinary Consultant</p>
                        <p class="text-text leading-relaxed">An acclaimed chef and food anthropologist, Mei Ling provides expert culinary advice, verifies recipes, and offers trend analysis, ensuring our content is both delicious and culturally informed.</p>
                    </div>
                     <div class="bg-white text-text rounded-lg shadow-md p-6 flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300">
                        <img src="images/team-kenji-ito.jpeg" alt="Headshot of Kenji Ito, Lead Photographer" width="160" height="192" class="rounded-full mb-4 object-cover border-4 border-accent">
                        <h3 class="text-xl font-heading text-primary mb-2">Kenji Ito</h3>
                        <p class="text-sm font-bold text-gray-600 mb-3">Lead Photographer</p>
                        <p class="text-text leading-relaxed">Kenji's lens transforms ingredients and dishes into art. His mastery of light and composition ensures that the food on our pages and screens looks irresistibly vibrant and authentic.</p>
                    </div>
                    <div class="bg-white text-text rounded-lg shadow-md p-6 flex flex-col items-center text-center hover:shadow-xl transition-shadow duration-300">
                        <img src="images/team-yumi-sato.jpeg" alt="Headshot of Yumi Sato, Digital Content Producer" width="160" height="192" class="rounded-full mb-4 object-cover border-4 border-accent">
                        <h3 class="text-xl font-heading text-primary mb-2">Yumi Sato</h3>
                        <p class="text-sm font-bold text-gray-600 mb-3">Digital Content Producer</p>
                        <p class="text-text leading-relaxed">Yumi is at the forefront of our online presence, creating engaging articles, dynamic videos, and interactive experiences that bring Gurume's content to life for our digital audience.</p>
                    </div>
                </div>
            </div>
        </section>
         <!-- Diagonal End Cap for Team Section -->
         <div class="relative w-full" style="height: 8rem; background-color: var(--color-primary);"></div>


        <!-- Contact Section -->
        <section id="contact" class="py-16 px-4 container mx-auto bg-background relative z-10">
            <h2 class="text-3xl md:text-4xl font-heading text-primary text-center mb-12">Get In Touch</h2>
             <div class="flex flex-col md:flex-row items-start gap-8 max-w-5xl mx-auto">
                 <!-- Contact Info -->
                <div class="md:w-1/2 text-lg text-text leading-relaxed">
                    <p class="mb-4">Have questions about our publications, services, or the survey? We'd love to hear from you. Reach out to us using the details below:</p>
                    
                    <div class="mb-6">
                        <h3 class="text-xl font-heading text-primary mb-2">Our Location:</h3>
                        <p>Gurume Publishing Co., Ltd.<br>
                        Shin-Otemachi Building, 1-5 Otemachi, 2F<br>
                        Chiyoda, Tokyo, 100-0004<br>
                        Japan</p>
                    </div>

                     <div class="mb-6">
                        <h3 class="text-xl font-heading text-primary mb-2">Contact Details:</h3>
                        <p>Phone: <a href="tel:+81367561234" class="text-accent hover:underline min-touch-target inline-block">+81-3-6756-1234</a></p>
                        <p>Email: <a href="mailto:info@" class="text-accent hover:underline min-touch-target inline-block">info@</a></p>
                    </div>

                    <div class="mb-6">
                        <h3 class="text-xl font-heading text-primary mb-2">Business Hours:</h3>
                        <p>Monday - Friday: 9:00 AM - 5:00 PM JST</p>
                         <p>We are closed on weekends and national holidays.</p>
                    </div>
                </div>

                 <!-- Map Placeholder / Embedded Map -->
                <div class="md:w-1/2 w-full rounded-lg overflow-hidden shadow-lg border-4 border-secondary">
                    <iframe
                      src="https://maps.google.com/maps?q=Chiyoda%2C%20Japan&t=m&z=13&ie=UTF8&iwloc=&output=embed"
                      width="100%"
                      height="450"
                      style="border:0;"
                      allowfullscreen=""
                      loading="lazy"
                      referrerpolicy="no-referrer-when-downgrade"
                      title="Map showing location of Gurume Publishing office in Chiyoda, Japan">
                    </iframe>
                </div>
            </div>
        </section>

    </main>

    <!-- Footer -->
    <footer class="bg-primary text-white py-12 px-4">
        <div class="container mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
            
            <!-- Logo and Description -->
            <div class="md:col-span-1 flex flex-col items-center md:items-start text-center md:text-left">
                <img src="images/gurume-logo-placeholder.jpeg" alt="Gurume Publishing Co., Ltd. Logo" width="192" height="96" class="h-16 w-auto object-contain mb-4 filter brightness-0 invert">
                 <p class="text-sm leading-relaxed text-secondary">Gurume Publishing Co., Ltd. is a leading voice in food media, based in Tokyo, Japan. We craft compelling stories, essential cookbooks, and vibrant digital content that celebrates global gastronomy.</p>
            </div>

            <!-- Sitemap -->
            <div class="md:col-span-1 text-center md:text-left">
                <h3 class="text-lg font-heading text-secondary mb-4">Explore</h3>
                <ul class="space-y-2">
                     <li><a href="#about" class="hover:text-accent transition duration-300 text-white">About Us</a></li>
                    <li><a href="#services_overview" class="hover:text-accent transition duration-300 text-white">Services</a></li>
                    <li><a href="#the_survey" class="hover:text-accent transition duration-300 text-white">Survey</a></li>
                    <li><a href="#contact" class="hover:text-accent transition duration-300 text-white">Contact</a></li>
                </ul>
            </div>

            <!-- Social Media -->
            <div class="md:col-span-1 text-center md:text-left">
                <h3 class="text-lg font-heading text-secondary mb-4">Connect</h3>
                <div class="flex justify-center md:justify-start space-x-4">
                    <a href="https://www.facebook.com/gurumepublishing" target="_blank" rel="noopener noreferrer" aria-label="Follow us on Facebook" class="min-touch-target">
                        <img src="images/icon-facebook.jpeg" alt="Facebook icon" width="32" height="32" class="h-8 w-8 object-contain filter brightness-0 invert">
                    </a>
                    <a href="https://www.instagram.com/gurumepublishing" target="_blank" rel="noopener noreferrer" aria-label="Follow us on Instagram" class="min-touch-target">
                         <img src="images/icon-instagram.jpeg" alt="Instagram icon" width="32" height="32" class="h-8 w-8 object-contain filter brightness-0 invert">
                    </a>
                     <a href="https://twitter.com/gurumepublishing" target="_blank" rel="noopener noreferrer" aria-label="Follow us on X (formerly Twitter)" class="min-touch-target">
                         <img src="images/icon-twitter.jpeg" alt="X (formerly Twitter) icon" width="32" height="32" class="h-8 w-8 object-contain filter brightness-0 invert">
                    </a>
                     <a href="https://www.linkedin.com/company/gurume-publishing" target="_blank" rel="noopener noreferrer" aria-label="Follow us on LinkedIn" class="min-touch-target">
                         <img src="images/icon-linkedin.jpeg" alt="LinkedIn icon" width="32" height="32" class="h-8 w-8 object-contain filter brightness-0 invert">
                    </a>
                </div>
            </div>

            <!-- Legal Links -->
            <div class="md:col-span-1 text-center md:text-left">
                <h3 class="text-lg font-heading text-secondary mb-4">Legal</h3>
                <ul class="space-y-2">
                    <li><a href="./privacy.html" class="hover:text-accent transition duration-300 text-white">Privacy Policy</a></li>
                    <li><a href="./tos.html" class="hover:text-accent transition duration-300 text-white">Terms of Service</a></li>
                </ul>
            </div>
        </div>

        <div class="container mx-auto text-center text-sm text-secondary mt-8 pt-8 border-t border-secondary">
            <p>© 2024 Gurume Publishing Co., Ltd. All rights reserved.</p>
        </div>
    </footer>

    <!-- Cookie Consent Banner -->
    <div id="cookieConsentBanner" data-cookie-name="" class="text-sm">
        This website uses cookies to ensure you get the best experience. By clicking "Accept", you agree to our use of cookies.
        <button id="acceptCookieConsent" class="min-touch-target">Accept</button>
    </div>

    <script>
        // Mobile Menu Toggle
        const mobileMenuButton = document.getElementById('mobile-menu-button');
        const mobileMenu = document.getElementById('mobile-menu');

        mobileMenuButton.addEventListener('click', function() {
            mobileMenu.classList.toggle('active');
            const isExpanded = mobileMenuButton.getAttribute('aria-expanded') === 'true';
            mobileMenuButton.setAttribute('aria-expanded', !isExpanded);
        });

        // Close mobile menu when a link is clicked
        mobileMenu.querySelectorAll('a').forEach(link => {
            link.addEventListener('click', function() {
                mobileMenu.classList.remove('active');
                 mobileMenuButton.setAttribute('aria-expanded', 'false');
            });
        });


        // Cookie Consent Script
        document.addEventListener('DOMContentLoaded', function() {
            // Generate a random cookie name (combination of prefix and random string)
            const cookiePrefix = "consent_gurumepublishing_"; // Added specific prefix
            const randomString = Math.random().toString(36).substring(2, 10);
            const cookieName = cookiePrefix + randomString;

            // Store the random cookie name in a data attribute for future reference
            const cookieBanner = document.getElementById('cookieConsentBanner');
            cookieBanner.setAttribute('data-cookie-name', cookieName);

            // Check if the consent cookie exists by looking for any cookie starting with the prefix
            const hasConsent = document.cookie.split(';').some((item) => {
                const trimmedItem = item.trim();
                return trimmedItem.startsWith(cookiePrefix);
            });

            if (!hasConsent) {
                // Show the cookie banner if no consent cookie exists
                cookieBanner.style.display = 'block';
            }

            // Set up event listener for the accept button
            document.getElementById('acceptCookieConsent').addEventListener('click', function() {
                // Use the stored random cookie name
                const nameToSet = cookieBanner.getAttribute('data-cookie-name');
                // Set the cookie with 1-year expiration
                const date = new Date();
                date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000));
                document.cookie = nameToSet + "=accepted; expires=" + date.toUTCString() + "; path=/; SameSite=Strict";

                // Hide the banner
                cookieBanner.style.display = 'none';
            });
        });
    </script>

</body>
</html>                               

Whois info of domain

Domain Name: FELWT.COM
Registry Domain ID: 2906646325_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.webnic.cc
Registrar URL: http://www.webnic.cc
Updated Date: 2024-08-09T14:59:15Z
Creation Date: 2024-08-09T14:59:15Z
Registry Expiry Date: 2025-08-09T14:59:15Z
Registrar: Web Commerce Communications Limited dba WebNic.cc
Registrar IANA ID: 460
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +60.189836788
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.DNS-PARKING.COM
Name Server: NS2.DNS-PARKING.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-13T15:12:56Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass