/* ==========================================================
    RESET & BASE (🔥 HIGH-CONTRAST PREMIUM EDITORIAL COMBINATION)
========================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#1d1d1d;
    
    /* 🔥 Changed Base Body to Pearl Minimal White for Luxury Pop */
    background-color: #faf9f6;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
}

:root{
    --bg:#faf9f6;
    --white:#ffffff;
    --green:#295943;
    --gold:#d4b46a;
    --text:#222;
    --gray:#666;
}

/* ===========================
    LAYOUT BOUNDARIES
=========================== */
.layout{
    display:grid;
    grid-template-columns:320px 1fr;
    min-height:100vh;
}

/* ==========================================================
    🔥 SIDEBAR: MUTED LUXURY IVORY-SAGE CONTRAST PANEL
========================================================== */
.sidebar{
    /* 🔥 Sidebar background changed to a clearly visible soft aesthetic tone */
    background-color: #f2ede4 !important; 
    padding:45px 35px;
    
    /* Clean Solid Separator Line */
    border-right: 1px solid rgba(41, 89, 67, 0.12) !important;
    position:sticky;
    top:0;
    height:100vh;
    overflow:auto;
    /* Subtle inner shadow to give it an elegant depth */
    box-shadow: inset -8px 0 15px rgba(0, 0, 0, 0.02); 
}

.logo{
    font-family:'Cormorant Garamond',serif;
    color:var(--green);
    font-size:42px;
    margin-bottom:30px;
}

.profile-image{
    width:180px !important;
    height:180px !important;
    border-radius:50% !important;
    object-fit:cover !important;
    display:block !important;
    margin:0 auto 25px auto !important;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.sidebar h3{
    text-align:center;
    margin-top:25px;
    font-size:30px;
    font-family:'Cormorant Garamond',serif;
}

.role{
    text-align:center;
    color:var(--green);
    margin-top:10px;
}

.bio{
    margin-top:25px;
    text-align:center;
    color:#666;
    line-height:1.8;
}

/* ===========================
    SIDEBAR DATA STATS
=========================== */
.sidebar-stats{
    margin-top:45px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.stat{
    background:#ffffff; /* White stats cards to contrast against the ivory panel */
    padding:18px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.03);
}

.stat h2{
    color:var(--green);
    margin-bottom:6px;
}

.stat span{
    font-size:13px;
    color:#777;
}

/* ===========================
    MOVING TICKER TRACKS
=========================== */
.sidebar-featured-text {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed rgba(41, 89, 67, 0.2);
    overflow: hidden !important; 
    width: 100% !important;
}

.featured-heading {
    display: block;
    font-size: 15px; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--green);
    margin-bottom: 18px; 
    line-height: 1.4;
}

.ticker-wrap {
    overflow: hidden !important;
    width: 100% !important;
    background: transparent;
}

.ticker {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: tickerLoop 30s linear infinite; 
}

.ticker:hover {
    animation-play-state: paused; 
}

.ticker-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    white-space: nowrap !important;
}

.ticker-item {
    display: inline-block !important;
    padding: 10px 20px; 
    margin-right: 14px;
    background: #d9e4d7; 
    color: #1a3327; 
    font-size: 15px; 
    font-weight: 600; 
    border-radius: 50px; 
    box-shadow: 0 4px 10px rgba(0,0,0,.02);
    white-space: nowrap !important;
}

@keyframes tickerLoop {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ===========================
    MAIN DASHBOARD GRID
=========================== */
.main-content{
    padding:45px 70px;
    overflow: hidden; 
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:70px;
}

.unsplash-btn{
    background:var(--green);
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:40px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

.unsplash-btn:hover{
    transform:translateY(-3px);
}

/* ===========================
    HERO WRAPPER SETTINGS
=========================== */
.hero{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:80px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    background:#efe7d7;
    color:var(--green);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:30px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero p{
    color:#666;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
    margin-bottom:40px;
}

.hero-right img{
    width: 100% !important;
    max-width: 420px !important;
    height: 450px !important; 
    object-fit: cover !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,.15) !important;
}

/* ===========================
    PERSONAL INTRO BOX
=========================== */
.personal-intro {
    margin-top: 100px;
    margin-bottom: 80px;
    background: #BFCDC2; 
    padding: 50px 60px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,.05);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1.8;
    color: #1b261f; 
}

.intro-greeting {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--green);
}

.intro-text {
    margin-bottom: 20px;
    text-align: justify;
}

.intro-signoff {
    margin-top: 40px;
    font-size: 24px;
    color: #2b362f;
}

.signature {
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    margin-top: 5px;
}

/* ===========================
    PHOTO TRAILS DISPLAY BLOCKS
=========================== */
.gallery{ margin-top:80px; min-height:400px; }
.section-title{ font-family:'Cormorant Garamond',serif; font-size:48px; color:var(--green); margin-bottom:40px; }

/* Crisp White Cards to sit cleanly on Pearl White base background */
.photo-card{
    background:#FFF1E6 !important;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    margin-bottom:80px;
    width:100%;
    border:1px solid rgba(0,0,0,.02);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
    will-change: transform;
}

.photo-card:hover{
    transform:translateY(-6px);   /* -8px se thoda subtle */
    box-shadow:0 22px 55px rgba(0,0,0,.08);
}

.photo-image{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;

    transition: transform .6s ease;
}

.photo-card:hover .photo-image{
    transform: scale(1.04);
}

.photo-content{ padding:40px; overflow:hidden; }
.photo-content h2{ font-family:'Cormorant Garamond',serif; font-size:46px; margin-bottom:20px; }

.unsplash-button{
    display:inline-block;
    background:var(--green);
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    margin-bottom:40px;
    transition:.3s;
}

.unsplash-button:hover{ transform:translateY(-3px); }
.verified-heading{ font-family:'Cormorant Garamond',serif; font-size:34px; margin-bottom:25px; color:var(--green); }

.verified-carousel{
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    overflow-x: auto !important;  
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.verified-carousel::-webkit-scrollbar{ display: none !important; width: 0 !important; height: 0 !important; }

.verified-card{
    flex: 0 0 280px !important; 
    width: 280px !important;
    min-width: 280px !important; 
    max-width: 280px !important;
    min-height: 280px !important; 
    border-radius: 12px !important; 
    background: #d9e4d7 !important; 
    padding: 24px; 
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0,0,0,.04);
    border: none !important; 
    transition: .3s;
    scroll-snap-align: start;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between; 
}

.verified-card:hover{ transform:translateY(-6px); box-shadow:0 20px 45px rgba(0,0,0,.1); }
.verified-site{ font-size:12px; text-transform:uppercase; letter-spacing:1px; color:#4a6154 !important; margin-bottom:14px; }
.verified-title{ font-size:18px; font-weight:600; line-height:1.5; color:#1a3327 !important; margin-bottom:auto; white-space:normal; }
.verified-link{ color:#1a3327 !important; font-weight:600; margin-top:20px; }

/* ==========================================
   CENTERED FOOTER SIGN-OFF
========================================== */
.photography-footer {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 60px;
    text-align: center;
    border-top: 1px dashed #ececec;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-journey-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px; 
    color: var(--green); 
    font-weight: 500;
    margin-bottom: 14px; 
    letter-spacing: 0.3px;
}

.unsplash-green-link {
    color: var(--green) !important;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--green); 
    transition: 0.3s ease;
    padding-bottom: 2px;
}

.unsplash-green-link:hover { opacity: 0.8; border-bottom-color: transparent; }
.footer-signoff { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: #555; margin-top: 5px; letter-spacing: 0.5px; }

/* ==========================================================
    MOBILE PLATFORMS & COMPACT LAYOUT SEGMENTATION
========================================================== */
@media(max-width:1000px){
    .layout{ grid-template-columns:1fr; }
    
    .sidebar{ 
        position:relative; 
        height:auto; 
        border-right:none !important; 
        border-bottom:1px solid rgba(41, 89, 67, 0.12) !important; 
        box-shadow: none !important;
    }
    
    .main-content{ padding:40px 20px; } 
    .hero{ grid-template-columns:1fr; text-align:center; gap: 40px; }
    .hero p{ margin:auto; margin-bottom:35px; }
    .hero-right{ margin-top:20px; display: flex; justify-content: center; }
    .hero-right img{ max-width: 100% !important; height: 350px !important; }
    .hero h1{ font-size:52px; }
    .navbar{ flex-direction:column; gap:25px; align-items: center; }
    .personal-intro { padding: 35px 25px; font-size: 20px; }
    .intro-greeting { font-size: 24px; }
    .signature { font-size: 28px; }
    .photo-image{ height:320px; }
    .photo-content{ padding:25px; }
    .photo-content h2{ font-size:34px; }

    .verified-card{
        flex: 0 0 240px !important; 
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        min-height: 190px !important; 
        padding: 20px 18px;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start; 
    }
    
    .verified-site { margin-bottom: 8px !important; }
    .verified-title { font-size: 15px !important; line-height: 1.4 !important; margin-bottom: 12px !important; }
    .verified-link { font-size: 14px !important; margin-top: auto !important; }

    .photography-footer { margin-top: 60px; padding-top: 35px; padding-bottom: 45px; }
    .footer-journey-text { font-size: 17px; }
    .footer-signoff { font-size: 16px; }
}


/* ===========================
   HERO TITLE REVEAL
=========================== */

.hero-title{
    overflow:hidden;
}

.hero-title span{
    display:block;
    opacity:0;
    transform:translateY(40px);
    animation:lineReveal 1.8s cubic-bezier(.22,1,.36,1) forwards;
    will-change:transform,opacity;
}

.hero-title span:nth-child(2){
    animation-delay:.8s;
}

@keyframes lineReveal{
    0%{
        opacity:0;
        transform:translateY(40px);
    }

    60%{
        opacity:.5;
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}
