     /* --- CSS VARIABLES & RESET --- */
        :root {
            --bg-cream: #f6edde;
            --off-white: #bebf38;
            --gold-primary: #6d6a64;
            --gold-light: #E5C564;
            --text-dark: #3E3E3E;
            --white: #FFFFFF;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --font-heading: 'Caudex', serif;
            --font-body: 'Crimson+Pro', serif ;
            --animate-delay: 0.5s;
        }

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


        html {
          scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-optical-sizing: auto;
            font-style: italic;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            background-image: url("https://tanyaandcallum.co.uk/wp-content/themes/Website/assets/arches.png");
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            color: var(--gold-primary);
            font-style: normal;
            text-transform: uppercase;
            letter-spacing: 10px;
            text-align: center;
            font-size: 2rem;
            font-weight: 400;
        }

       /* .cursive {
            font-family: 'Great Vibes', cursive;
            text-transform: none;
            color: var(--text-dark);
        }*/
        .card{
            background-color: var(--white);
            background-image: url("https://tanyaandcallum.co.uk/wp-content/themes/Website/assets/sandpaper.png");
            backface-visibility: ;
            padding: 80px 150px;
            width: 100%;
            min-height: 700px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
            align-items: center;
            border: var(--gold-light) 0.5px solid;
        /*    border-top: 5px solid var(--gold-primary);
            border-bottom: 5px solid var(--gold-primary);*/

        }

        /* --- ENVELOPE OPENING SCREEN --- */
        #envelope-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-cream);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: transform 1s ease-in-out, opacity 1s;
        }

        .click-text {
            margin-top: 2rem;
            font-family: var(--font-body);
            color: var(--gold-primary);
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        .envelope-container{

            position: relative;
            width: 100vh;
            height: auto;
            /*background: var(--gold-light);*/
            cursor: pointer;
            /*box-shadow: 0 10px 30px rgba(0,0,0,0.2);*/
            transform: rotate(-10deg);
            transition: transform 1s;


        }
        /* CSS Envelope */
        .envelope-container img {
           width: 100%;
           height: auto;

        }

        .envelope-container:hover {
            transform: scale(1.2);
            transition: transform 1s;
        }

        .flap {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
            border-left: 250px solid transparent;
            border-right: 250px solid transparent;
            border-top: 220px solid #DDB847; /* The Flap Color */
            transform-origin: top;
            transition: transform 0.6s ease-in-out, z-index 0.2s;
            z-index: 5;
        }

        .pocket {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 0;
            border-left: 250px solid transparent;
            border-right: 250px solid transparent;
            border-bottom: 200px solid #DDB847; /* Slightly darker than light gold */
            z-index: 4;
        }
        
        .pocket-bg {
             position: absolute;
             width: 100%;
             height: 100%;
             background-color: var(--off-white);
             top:0;
             left:0;
             z-index: 1;
        }

        /* Animation States */
        .envelope-container.open .flap {
            transform: rotateX(180deg);
            z-index: 1;
        }

        .envelope-container.open .letter {
            transform: translateY(-100px);
            z-index: 6;
        }

        #envelope-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .envelope-container-open{
            width:500px; 
            height: auto; 
            position: absolute; 
            top: 0px; 
            left: 50%; 
            translate: -50% 0%; 
            z-index:-10;
        }

        /* --- MAIN WEBSITE CONTENT --- */
        #main-content {
            opacity: 0;
            transition: opacity 2s ease-in;
            display: none; /* Hidden until envelope opens */
        }

        /* Sections */
        section {
            padding: 100px 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .spacing{
            padding: 20px 0px;
        }

        ./*menu{
            margin-top: 40px;
            width: 100%;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-content: center;
            justify-content: center;
            align-items: center;

        }*/



        .logo{
            font-size:5em; 
            font-family:var(--font-heading); 
            font-weight: 400;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            text-align: center;
            height: 50%;
            color: var(--gold-primary);
        }
        .logo img{
            width: 200px;
            height: auto;
        }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }
        
        .hero .names {
            font-family: var(--font-heading);
            font-style: normal;
            font-size: 2.5rem;
            font-optical-sizing: auto;
            color: var(--gold-primary);
            margin: 20px 0;
            text-transform: uppercase;
            letter-spacing: 7px;
            font-weight: 100;
        }

         p {
            font-size: 1.2rem;
            letter-spacing: 2px;*/
        }
        h3 {
            font-size: 1.2em;
            margin: 30px 0px  30px 0px;
        }
        h2{
            font-weight: 400;
        }

        /* Countdown */
        .countdown-container {
            background: var(--white);
            padding: 40px;
            border: 1px solid var(--gold-primary);
            margin: 0px 0px 40px 0px;
            display: flex;
            justify-content: center;
            gap: 20px;
            box-shadow: var(--shadow);
        }

        .time-box {
            text-align: center;
        }

        .time-box span {
            display: block;
            font-size: 2.5rem;
            font-family: var(--font-body);
            color: var(--gold-primary);
        }

        .time-box label {
            font-size: 0.8rem;
            /*text-transform: uppercase;*/
            /*letter-spacing: 1px;*/
        }

        /* Timeline */
        .timeline-item {
            position: relative;
            padding-left: 20px;
            /*border-left: 2px solid var(--gold-primary);*/
            display: flex;
            align-items: center;
            width: 100%;
        }

        .timeline-item h3{
            text-align: left;
            width: 100%;
        }
        .timeline-item img{

            width: 80px;

        }

        .timeline-time {
            font-weight: bold;
            color: var(--gold-primary);
            font-size: 1.2rem;
            margin: 0px 40px;
            width: 100%;


        }

        /* Grid for Details */
        .details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            text-align: left;
        }

        .detail-card {
            background: var(--white);
            padding: 30px;
            border: 1px solid var(--gold-primary);
            box-shadow: var(--shadow);
        }
        
        .detail-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }


        /*masonry-wrappper*/

        .masonry-wrappper { 
            column-count: 3;
            column-gap: 10px;
            width: auto;
            margin: auto;
        }

        .masonry-wrappper .item {
            display: inline-block;
            margin: 0px 20px;
            transform: scale(1);
            transition: transform 0.5s;
            box-shadow: var(--shadow);
            background-color: var(--white);
            border: var(--gold-light) 0.5px solid;
            width: auto;
            padding: 23px;
            margin: 10px 0px;
            max-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /*.masonry-wrappper .item img{

            width: 250px;
            transform: scale(1);
            top: 50%;
            left: 50%;
            translate:-50% -50% 0;
            position: relative;
        }*/
        .masonry-wrappper .item:hover{
            transform: scale(1.05);
            
            transition: transform 0.5s;

        }

        .masonry-wrappper .item a {
            
            color: var(--gold-primary);
            text-decoration: none;
            font-family: var(--font-heading);
        }

        .masonry-wrappper .item a h3 {


            
        }

        .masonry-wrappper .item a:hover { 
            color: var(--text-dark);
        }

        /* RSVP Form */
        form {
            background: var(--white);
            padding: 40px;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--gold-primary);
        }

        input, select, textarea {
            width: 100%;
            padding: 15px;
            margin: 10px 0 20px;
            border: 1px solid #ddd;
            font-family: 'Lato', sans-serif;
            background: #fafafa;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--gold-primary);
        }

        button {
            background-color: var(--gold-primary);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-family: var(--font-body);
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            text-transform: uppercase;
        }

        button:hover {
            background-color: #b5932a;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px;
            background: var(--gold-primary);
            color: white;
        }

        /* Utility */
        .divider {
            width: 100px;
            height: 2px;
            background: var(--gold-primary);
            margin: 20px auto;
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .menu-wrappper{
            width: auto;
            height: auto;
            display: flex;
            justify-content: space-evenly;
            flex-direction: row;
        }

        .menu-wrappper .item a {
            
            color: var(--gold-primary);
            text-decoration: none;
            font-family: var(--font-heading);
        }


        .menu-wrappper .item a h3 {
            letter-spacing: 5px;
        }



        .menu-wrappper .item {
            
            background-color: var(--white);
            background-image: url("https://tanyaandcallum.co.uk/wp-content/themes/Website/assets/sandpaper.png");

            display: inline-block;
            margin: 0px 20px;
            transform: scale(1);
            transition: transform 0.5s;
            box-shadow: var(--shadow);
            background-color: var(--white);
            border: var(--gold-light) 0.5px solid;
            width: auto;
            padding: 23px;
            margin: 0px 0px 10px 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 2px;

        }

        .menu-wrappper .item:hover {
            
            
            transform: scale(1.05);
            transition: transform 0.5s;
            

        }

        .item-wrappper-l{
            width: 100%;
            margin: 0px 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }

        .menu-wrappper .item-h{
            height: 100%;
            background-color: var(--white);

        }

        .item-wrappper-r{
            margin: 0px 0px 0px 10px;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
        .menu-wrappper .item-w{
            background-color: var(--white);
        }

        .menu-wrappper .menu-wrapper-man{
            column-count: 2;
        }
        .menu-wrappper .item-tfd{
            height: 378px;
            margin: 0px 0px 10px 0px;
        }

        #OFTD h3{
            font-family: var(--font-body);
            letter-spacing: 2px;
            text-transform: none;
            font-style: italic;
        }

      


        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero .names { font-size: 1.8rem; }
            .details-grid { grid-template-columns: 1fr; }
            .countdown-container { flex-wrap: wrap; gap: 10px; }
            .time-box span { font-size: 1.8rem; }
            .envelope-container { width: 70vh; height: auto;}
            .letter { width: 220px; height: 150px; }
            .flap { border-left-width: 130px; border-right-width: 130px; }
            .pocket { border-left-width: 130px; border-right-width: 130px; }
            .card{ padding:20px; }
            .envelope-container-open{ width: 350px }
            .logo{ height:15%; }
            .logo img{ width:150px }
            .masonry-wrappper { column-count: 2 }
            .menu-wrappper .menu-wrapper-man{ column-count:1; }
             h1, h2, h3{
                font-size: 1.5em;
             }
             h3{
                font-size: 1em;
             }
             .item-wrappper-l{margin: 0px;}
             .menu-wrappper .item{ padding:9px }
             .menu-wrappper .item-tfd{ height:auto }
             .timeline-item img{ width:48px; }
             #OFTD h3 { text-align:left; }
             .timeline-time{ margin:0px 20px; width:200px }



        }