/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#05070d;
    color:#ffffff;
    font-family:'Inter', sans-serif;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================
CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
TYPOGRAPHY
========================= */

h1,h2,h3,h4{
    font-family:'Cinzel', serif;
    font-weight:600;
    line-height:1.3;
}

h1{
    font-size:68px;
}

h2{
    font-size:42px;
    margin-bottom:25px;
}

h3{
    font-size:24px;
    margin-bottom:15px;
}

p{
    color:#c8d0dd;
    margin-bottom:20px;
}

a{
    text-decoration:none;
    transition:0.3s;
}

/* =========================
HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(5,7,13,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 0;
}

.logo{
    font-family:'Cinzel', serif;
    color:#ffffff;
    font-size:22px;
    letter-spacing:2px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:30px;
    transition:0.4s;
}

.main-nav a{
    color:#d7dce5;
    font-size:15px;
}

.main-nav a:hover{
    color:#d4b06a;
}

.header-button{
    padding:12px 22px;
    border:1px solid #d4b06a;
    border-radius:40px;
    color:#d4b06a !important;
}

.header-button:hover{
    background:#d4b06a;
    color:#05070d !important;
}

/* =========================
HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    padding-top:120px;

    background:
    linear-gradient(rgba(5,7,13,0.75), rgba(5,7,13,0.9)),
    url('/images/hero/star-bg.jpg');

    background-size:cover;
    background-position:center;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top,
    rgba(125,160,220,0.18),
    transparent 60%);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.hero-subtitle{
    color:#d4b06a;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;
    font-size:14px;
}

.hero h1{
    margin-bottom:30px;
}

.hero p{
    font-size:20px;
    margin-bottom:40px;
    max-width:650px;
}

/* =========================
BUTTONS
========================= */

.button-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:#d4b06a;
    color:#05070d;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:#ffffff;
}

.btn-secondary:hover{
    border-color:#d4b06a;
    color:#d4b06a;
}

/* =========================
FEATURE SECTIONS
========================= */

.section{
    padding:120px 0;
}

.section-dark{
    background:#0d1320;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:auto auto 70px auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#111827;
    padding:40px 30px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:rgba(212,176,106,0.35);
}

.feature-card h3{
    margin-bottom:20px;
    color:#ffffff;
}

.feature-card:hover h3{
    color:#d4b06a;
}

.feature-card{
    color:inherit;
}

.feature-card:visited{
    color:inherit;
}

/* =========================
OBSERVATORY SECTION
========================= */

.split-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.image-panel{
    min-height:500px;
    background:url('/images/hero/observatory.jpg');
    background-size:cover;
    background-position:center;
    border-radius:10px;
}

/* =========================
FOOTER
========================= */

.site-footer{
    background:#04060b;
    padding-top:90px;
    border-top:1px solid rgba(255,255,255,0.06);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
    padding-bottom:60px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#c8d0dd;
}

.footer-grid a:hover{
    color:#d4b06a;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.06);
    padding:30px 0;
    text-align:center;
}

.footer-note{
    font-size:14px;
    color:#7e8796;
    margin-top:10px;
}

/* =========================
FLOATING STARS
========================= */

.floating-stars{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:1;
    overflow:hidden;
}

.star{
    position:absolute;
    width:2px;
    height:2px;
    background:white;
    border-radius:50%;
    opacity:0.3;
    animation:floatStar ease-in-out infinite;
}

@keyframes floatStar{

    0%{
        transform:translateY(0px);
        opacity:0.15;
    }

    50%{
        opacity:0.8;
    }

    100%{
        transform:translateY(-40px);
        opacity:0;
    }

}

/* =========================
HERO ATMOSPHERE
========================= */

.hero::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(212,176,106,0.08),
    transparent 60%);

    z-index:1;
}

/* =========================
SECTION DIVIDERS
========================= */

.section{
    position:relative;
}

.section::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:1px;

    background:
    linear-gradient(to right,
    transparent,
    rgba(212,176,106,0.4),
    transparent);
}

/* =========================
FEATURE CARD ENHANCEMENTS
========================= */

.feature-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.05),
    transparent
    );

    transition:0.7s;
}

.feature-card:hover::before{
    left:100%;
}

.feature-card:hover{
    box-shadow:
    0 0 40px rgba(212,176,106,0.08);
}

/* =========================
BUTTON ATMOSPHERE
========================= */

.btn-primary{
    box-shadow:
    0 0 25px rgba(212,176,106,0.18);
}

.btn-primary:hover{
    box-shadow:
    0 0 40px rgba(212,176,106,0.35);
}

/* =========================
CELEBRITY SECTION
========================= */

.celebrity-section{
    background:
    linear-gradient(to bottom,
    #05070d,
    #0b1120);
}

.celebrity-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.celebrity-card{
    background:#111827;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.celebrity-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 0 45px rgba(212,176,106,0.08);
}

.celebrity-image{
    height:260px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.celebrity-image::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(5,7,13,0.95),
    transparent);
}

.celebrity-1{
    background-image:url('/images/celebrity/hollywood.jpg');
}

.celebrity-2{
    background-image:url('/images/celebrity/music.jpg');
}

.celebrity-3{
    background-image:url('/images/celebrity/scifi.jpg');
}

.celebrity-content{
    padding:35px;
}

.celebrity-content a:not(.btn){
    color:#d4b06a;
    font-weight:600;
}

/* =========================
CERTIFICATE SHOWCASE
========================= */

.certificate-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.certificate-frame{
    background:
    linear-gradient(145deg,
    #d4b06a,
    #9e7d45);

    padding:18px;

    border-radius:14px;

    box-shadow:
    0 0 50px rgba(212,176,106,0.18);
}

.certificate-inner{
    background:#f2ecdf;
    color:#111;
    min-height:500px;

    padding:70px 50px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    border:2px solid rgba(0,0,0,0.08);
}

.certificate-inner h3{
    color:#111;
    margin-bottom:40px;
}

.certificate-name{
    font-size:42px;
    font-family:'Cinzel', serif;
    margin-bottom:20px;
    color:#111;
}

.certificate-line{
    width:180px;
    height:1px;
    background:#111;
    margin:40px 0;
}

.certificate-small{
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
}

/* =========================
ATMOSPHERIC BACKGROUNDS
========================= */

.section-dark{
    position:relative;
    overflow:hidden;
}

.section-dark::after{
    content:'';
    position:absolute;
    top:-200px;
    right:-200px;

    width:500px;
    height:500px;

    background:
    radial-gradient(circle,
    rgba(125,160,220,0.08),
    transparent 70%);
}

/* =========================
PREMIUM MOTION
========================= */

.feature-card,
.celebrity-card,
.btn{
    transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================
MOBILE MENU
========================= */

.mobile-toggle{
    display:none;
    font-size:34px;
    color:#d4b06a;
    cursor:pointer;
    user-select:none;
}

/* =========================
HEADER SCROLL ATMOSPHERE
========================= */

.site-header{
    transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header:hover{
    background:rgba(5,7,13,0.95);
    box-shadow:
    0 0 35px rgba(0,0,0,0.45);
}

/* =========================
SCROLL REVEALS
========================= */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================
LUXURY DEPTH
========================= */

.feature-card,
.celebrity-card,
.certificate-frame{
    transform-style:preserve-3d;
    will-change:transform;
}

/* =========================
PARALLAX ATMOSPHERE
========================= */

.hero{
    background-attachment:fixed;
}

@media(max-width:768px){

.hero{
    background-attachment:scroll;
}

}

/* =========================
HERO ENTRANCE
========================= */

.hero-content{
    animation:
    heroFade 1.8s ease forwards;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =========================
PRODUCTS HERO
========================= */

.products-hero{
    min-height:65vh;
}

/* =========================
PRODUCTS GRID
========================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.product-card{
    background:#111827;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.06);
    position:relative;

    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.product-card:hover{
    transform:translateY(-10px);

    border-color:
    rgba(212,176,106,0.25);

    box-shadow:
    0 0 45px rgba(212,176,106,0.08);
}

.featured-product{
    transform:scale(1.03);
    border-color:
    rgba(212,176,106,0.25);
}

.featured-product:hover{
    transform:
    scale(1.03)
    translateY(-10px);
}

.featured-badge{
    position:absolute;
    top:18px;
    right:18px;

    background:#d4b06a;
    color:#05070d;

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;
    z-index:5;
}

.product-image{
    height:260px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.product-image::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(to top,
    rgba(5,7,13,0.95),
    transparent);
}

.product-1{
    background-image:url('/images/products/memorial.jpg');
}

.product-2{
    background-image:url('/images/products/premium.jpg');
}

.product-3{
    background-image:url('/images/products/celebrity.jpg');
}

.product-content{
    padding:35px;
}

.product-category{
    color:#d4b06a;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:15px;
}

.product-features{
    list-style:none;
    margin:30px 0;
}

.product-features li{
    margin-bottom:14px;
    color:#c8d0dd;
    position:relative;
    padding-left:22px;
}

.product-features li::before{
    content:'✦';
    position:absolute;
    left:0;
    color:#d4b06a;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:30px;
}

.product-price{
    font-size:34px;
    font-family:'Cinzel', serif;
    color:#ffffff;
}

/* =========================
PRODUCT PAGE IMAGE
========================= */

.product-page-image img{
    width:100%;
    border-radius:14px;

    box-shadow:
    0 0 45px rgba(212,176,106,0.12);
}

/* =========================
DEDICATION FORM
========================= */

.dedication-wrapper{
    max-width:1000px;
    margin:auto;
}

.dedication-form{
    background:#111827;
    border-radius:18px;
    padding:60px;
    border:1px solid rgba(255,255,255,0.06);
}

.form-section{
    margin-bottom:70px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.form-group{
    margin-bottom:30px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    color:#d4b06a;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    background:#0b1120;
    border:1px solid rgba(255,255,255,0.08);
    color:#ffffff;

    padding:18px 20px;

    border-radius:12px;

    font-size:16px;

    transition:0.3s;
}

.form-group textarea{
    min-height:160px;
    resize:vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    outline:none;

    border-color:
    rgba(212,176,106,0.45);

    box-shadow:
    0 0 20px rgba(212,176,106,0.08);
}

/* =========================
OCCASION CARDS
========================= */

.occasion-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.occasion-card{
    background:#0b1120;
    border:1px solid rgba(255,255,255,0.08);

    border-radius:14px;

    padding:35px 20px;

    text-align:center;

    cursor:pointer;

    transition:0.3s;

    position:relative;
}

.occasion-card:hover{
    border-color:
    rgba(212,176,106,0.4);

    transform:translateY(-4px);
}

.occasion-card input{
    position:absolute;
    opacity:0;
}

.occasion-card span{
    font-family:'Cinzel', serif;
    font-size:18px;
}

/* =========================
SELECTED OCCASION
========================= */

.occasion-card input:checked + span{

    color:#d4b06a;

}

.occasion-card:has(input:checked){

    border-color:
    rgba(212,176,106,0.55);

    background:
    rgba(212,176,106,0.08);

    box-shadow:
    0 0 30px rgba(212,176,106,0.12);

    transform:translateY(-4px);

}

/* =========================
FORM SUBMIT
========================= */

.form-submit{
    text-align:center;
}

/* =========================
DEDICATION LAYOUT
========================= */

.dedication-layout{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:50px;
    align-items:start;
}

/* =========================
LIVE CERTIFICATE
========================= */

.certificate-live-preview{
    position:sticky;
    top:140px;
}

.live-certificate-frame{
    background:
    linear-gradient(145deg,
    #d4b06a,
    #9c7a42);

    padding:18px;

    border-radius:16px;

    box-shadow:
    0 0 45px rgba(212,176,106,0.18);
}

.live-certificate{
    background:#f4eee1;

    min-height:650px;

    padding:60px 40px;

    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:center;

    color:#111;

    position:relative;

    overflow:hidden;
}

.live-certificate::before{
    content:'';

    position:absolute;
    inset:20px;

    border:1px solid rgba(0,0,0,0.08);
}

.certificate-top{
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:30px;
}

.live-certificate h2{
    color:#111;
    font-size:34px;
    margin-bottom:40px;
}

.live-presented{
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    margin-bottom:20px;
}

.live-recipient{
    font-family:'Cinzel', serif;
    font-size:42px;
    margin-bottom:40px;
    line-height:1.2;
}

.live-message{
    max-width:320px;
    margin:auto auto 40px auto;
    font-style:italic;
    color:#333;
}

.live-divider{
    width:160px;
    height:1px;
    background:#111;
    margin:0 auto 30px auto;
}

.live-occasion{
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:50px;
}

.live-footer{
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* =========================
ORDER SUMMARY
========================= */

.summary-box{
    max-width:1000px;
    margin:auto;

    background:#111827;

    border-radius:18px;

    padding:60px;

    border:1px solid rgba(255,255,255,0.06);
}

.summary-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:50px 0;
}

.summary-item{
    background:#0b1120;
    padding:30px;
    border-radius:14px;
}

.summary-item h3{
    margin-bottom:12px;
}

.summary-message{
    background:#0b1120;
    padding:35px;
    border-radius:14px;
    margin-bottom:40px;
}

.summary-actions{
    text-align:center;
}

/* =========================
REGISTRY PAGE
========================= */

.registry-grid{

    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

    margin-top:60px;

}

.registry-card{

    display:block;

    background:
    rgba(5,10,25,0.88);

    border:1px solid
    rgba(212,175,55,0.25);

    border-radius:18px;

    padding:35px;

    text-decoration:none;

    transition:all 0.3s ease;

    box-shadow:
    0 0 30px rgba(0,0,0,0.45);

    backdrop-filter:blur(4px);

}

.registry-card:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
    0 0 35px rgba(212,175,55,0.18);

}

.registry-type{

    display:inline-block;

    padding:8px 14px;

    background:
    rgba(212,175,55,0.12);

    border:1px solid
    rgba(212,175,55,0.3);

    border-radius:30px;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#D4AF37;

    margin-bottom:22px;

}

.registry-card h2{

    font-size:42px;

    line-height:1.1;

    margin-bottom:25px;

    color:#FFF;

    font-family:
    'Cormorant Garamond',
    serif;

}

.registry-occasion{

    font-size:18px;

    color:#D4AF37;

    margin-bottom:18px;

    font-style:italic;

}

.registry-constellation,
.registry-date{

    font-size:16px;

    line-height:1.8;

    color:#DDD;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.registry-card h2{

    font-size:32px;

}

}

/* =========================
REGISTRY ENTRY PAGE
========================= */

.registry-entry-card{

    max-width:1100px;

    margin:0 auto;

    background:
    rgba(5,10,25,0.92);

    border:1px solid
    rgba(212,175,55,0.25);

    border-radius:24px;

    padding:70px;

    box-shadow:
    0 0 40px rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    position:relative;

    overflow:hidden;

}

/* GOLD GLOW */

.registry-entry-card:before{

    content:'';

    position:absolute;

    top:-150px;
    right:-150px;

    width:350px;
    height:350px;

    background:
    radial-gradient(
        circle,
        rgba(212,175,55,0.12),
        transparent 70%
    );

    pointer-events:none;

}

/* PRODUCT BADGE */

.registry-entry-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:
    rgba(212,175,55,0.12);

    border:1px solid
    rgba(212,175,55,0.35);

    color:#D4AF37;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

    margin-bottom:30px;

}

/* MAIN TITLE */

.registry-entry-card h2{

    font-size:72px;

    line-height:1.05;

    margin-bottom:25px;

    color:#FFF;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* OCCASION */

.registry-entry-occasion{

    font-size:24px;

    color:#D4AF37;

    font-style:italic;

    margin-bottom:45px;

}

/* DEDICATION MESSAGE */

.registry-entry-message{

    font-size:28px;

    line-height:1.8;

    color:#EEE;

    font-style:italic;

    margin-bottom:60px;

    padding:40px;

    border-left:3px solid
    rgba(212,175,55,0.45);

    background:
    rgba(255,255,255,0.03);

    border-radius:14px;

}

/* DETAILS GRID */

.registry-details-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    margin-top:50px;

}

/* DETAIL BLOCK */

.registry-details-grid div{

    background:
    rgba(255,255,255,0.03);

    border:
    1px solid rgba(255,255,255,0.05);

    border-radius:16px;

    padding:28px;

}

/* DETAIL TITLES */

.registry-details-grid h3{

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#D4AF37;

    margin-bottom:16px;

}

/* DETAIL VALUES */

.registry-details-grid p{

    font-size:20px;

    line-height:1.6;

    color:#FFF;

}

/* REGISTRY REFERENCE */

.registry-reference{

    margin-top:60px;

    text-align:center;

    font-size:18px;

    letter-spacing:3px;

    color:#D4AF37;

    opacity:0.9;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.registry-entry-card{

    padding:35px;

}

.registry-entry-card h2{

    font-size:42px;

}

.registry-entry-message{

    font-size:22px;

    padding:25px;

}

}

