/*
Theme Name: Reborn Beluga
Theme URI: https://example.com/reborn-beluga
Author: Antigravity
Description: Strict recreation of the Reborn Beluga design elements.
Version: 3.0.0
*/

:root {
    --color-cream: #FFF5F0;
    --color-dark: #1F1F1F;
    --color-text: #1F1F1F;
    --color-gold: #D4AF37;
    --color-brush-pink: #FFE4E1;

    --font-script: 'Pinyon Script', cursive;
    --font-serif: 'PT Serif', serif;
    --font-sans: 'Inter', sans-serif;

    --header-height: 140px;
    /* Taller header */
}

body {
    background-color: var(--color-cream);
    color: var(--color-text);
    font-family: var(--font-serif);
    margin: 0;
    overflow-x: hidden;
}

/* =========================================
   HEADER: DOUBLE CURVE SVG TECHNIQUE
   ========================================= */

.site-header {
    height: var(--header-height);
    background-color: var(--color-dark);
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Nav to right */
    align-items: center;
    padding-right: 60px;
    z-index: 100;
}

/* 
   The Logo Container acts as the visual "Left side" of the header.
   It uses an SVG background to achieve the exact 'Double Curve'.
   We do not use clip-path on the div alone because we need borders/strokes.
*/
.header-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    /* Wide area for the curve */
    height: 100%;
    z-index: 101;
    pointer-events: none;
    /* Let clicks pass through if needed, but logo is inside */
}

.header-logo-container svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* The actual clickable logo content placed ON TOP of the SVG area */
.site-logo-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Correction: Logo position might be more top-left */
    padding-left: 50px;
    padding-bottom: 20px;
    /* Adjust for curve */
}

.site-logo-link {
    text-decoration: none;
    color: var(--color-text);
    display: flex;
    flex-direction: row;
    /* Icon next to text */
    align-items: center;
}

.site-logo-text {
    text-align: center;
    line-height: 0.9;
}

.site-logo-text small {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.site-logo-text span {
    font-family: var(--font-script);
    font-size: 4rem;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #FFF;
    /* Pure white on dark */
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--color-gold);
}


/* =========================================
   HERO IMAGE: CURVE + DROP SHADOW FILTER
   ========================================= */

/* 
   The specific layout from PNG: 
   The image touches the header. 
   The bottom of the image has a Convex Curve ("Smile").
   AND a shadow follows it.
   
   Solution: Use a PARENT filter: drop-shadow() and a CHILD clip-path.
*/
.hero-container {
    position: relative;
    width: 100%;
    /* This dropshadow follows the shape of the children (the clipped image) */
    filter: drop-shadow(0px 30px 40px rgba(0, 0, 0, 0.5));
    z-index: 10;
    margin-bottom: 60px;
}

.hero-image-clip {
    width: 100%;
    height: 650px;
    /* The Image Source */
    background-image: url('https://placehold.co/1920x800/222222/FFF5F0?text=Seafood+Platter');
    background-size: cover;
    background-position: center;

    /* THE CURVE: 
       "Smiling" curve at bottom.
       ellipse(150% 100% at 50% 0%) -> creates a huge arc
    */
    clip-path: ellipse(150% 100% at 50% 0%);
}


/* =========================================
   REST OF THE PAGE
   ========================================= */

.hero-tagline-container {
    text-align: right;
    padding-right: 15%;
    margin-top: -50px;
    /* Pull up closer to the curve shadow */
    position: relative;
    z-index: 20;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 5rem;
    line-height: 1;
    display: inline-block;
    text-align: right;
}

.hero-tagline small {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    display: block;
    margin-bottom: -10px;
}

.highlight-pink {
    background: var(--color-brush-pink);
    display: inline-block;
    padding: 0 20px;
    transform: rotate(-2deg);
}

/* Fish Divider */
.divider-fish {
    text-align: center;
    margin: 80px 0;
    opacity: 0.5;
}

/* 3 Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.info-card {
    border: 2px solid #000;
    border-radius: 40px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    /* Box shadow is usually minimal on these, outlining is key */
}

.info-card img {
    border-radius: 20px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Footer Wave */
.footer-mask {
    margin-bottom: -5px;
    line-height: 0;
}

.site-footer {
    background: var(--color-dark);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}