* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #d8ceca, #e3c3a6);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.left {
    flex: 1;
    z-index: 10;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 95px);
    line-height: 1.1;
    color: #5a3426;
}

p {
    margin: 20px 0 40px;
    font-size: clamp(18px, 3vw, 26px);
    color: #6d4b3d;
}

/* Button & 3D Container Wrapper */
.button-wrapper {
    position: relative;
    display: inline-block;
}

#exploreBtn {
    background: rgba(222, 143, 71, 0.15); /* Transparent Orange */
    backdrop-filter: blur(12px); /* Glass blur */
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(222, 143, 71, 0.5);
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 600;
    color: #5a3426;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 20; /* Above the 3D shapes */
}

#exploreBtn:hover {
    background: rgba(222, 143, 71, 0.25);
}

.btn-3d-container {
    position: fixed; /* Fixed to follow the viewport */
    top: 0;
    left: 0;
    width: 400px;
    height: 300px;
    pointer-events: none;
    z-index: 15; /* Between button background and text */
}

.right img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0px 20px 40px rgba(0,0,0,0.1));
}

/* --- Responsive Adjustments --- */
@media (max-width: 850px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    .right img {
        max-width: 350px;
    }
}

/* ... Keep your existing body and hero styles ... */

.hero {
    position: relative;
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

/* --- Responsive Typography --- */
h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 8vw, 95px); /* Responsive font size */
    line-height: 1.05;
    color: #5a3426;
}

p {
    margin-top: 25px;
    font-size: clamp(18px, 4vw, 30px);
    color: #6d4b3d;
}

/* --- The Transparent 3D Button --- */
#exploreBtn {
    margin-top: 50px;
    background: rgba(222, 143, 71, 0.2); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Glass effect */
    border: 2px solid #de8f47;
    padding: 18px 45px;
    font-size: 22px;
    font-weight: 600;
    color: #5a3426;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10; /* Above the 3D shapes */
    overflow: hidden;
}

#exploreBtn:hover {
    background: rgba(222, 143, 71, 0.4);
    transform: scale(1.05);
}

/* --- 3D Canvas Container --- */
.btn-3d-container {
    position: fixed; /* Fixed so it follows scroll/resize easier */
    width: 400px;
    height: 300px;
    pointer-events: none;
    z-index: 5; /* Behind the button text */
    top: 0;
    left: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 50px;
    }
    .left {
        order: 2;
        margin-bottom: 50px;
    }
    .right {
        order: 1;
        margin-bottom: 30px;
    }
    .right img {
        width: 80%;
    }
}