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

body{

font-family:Poppins,sans-serif;
background:#0f0f0f;
color:white;

}

header{

position:fixed;

top:0;
left:0;

width:100%;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px 60px;

background:rgba(0,0,0,0.35);

backdrop-filter:blur(10px);

-webkit-backdrop-filter:blur(10px);

border-bottom:1px solid rgba(255,255,255,0.08);

z-index:1000;

transition:.3s;

}
.logo-area{

display:flex;
align-items:center;
gap:15px;

}

.logo{

width:42px;
height:42px;
border-radius:8px;

}

.logo-area h2{

font-family:"Cormorant Garamond",serif;

font-size:28px;

letter-spacing:1px;

font-weight:600;

}
nav a{

color:white;

text-decoration:none;

margin-left:35px;

font-size:15px;

letter-spacing:1px;

text-transform:uppercase;

transition:.3s;

}

nav a:hover{

color:#D4AF37;

}

.hero{

    height:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:110px 90px 0;

    position:relative;

    overflow:hidden;

}

.hero h1{

font-family:"Cormorant Garamond",serif;

font-size:92px;

line-height:0.9;

letter-spacing:4px;

margin-bottom:25px;

}

.hero h3{

font-family:"Cormorant Garamond",serif;

font-size:34px;

color:#d4af37;

margin-bottom:20px;

font-style:italic;

}

.hero p{

font-size:20px;

line-height:1.7;

color:#ddd;

margin-bottom:45px;

}

.buttons{

display:flex;

gap:25px;

}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

padding:16px 34px;

border:1px solid #D4AF37;

border-radius:4px;

text-decoration:none;

letter-spacing:1px;
     font-size:17px;
    color:white;

transition:.35s;

}

.gold{

background:#D4AF37;

color:black;

font-weight:600;

}
.btn.gold{

    background:#D4AF37;
    color:#111;
    font-weight:600;

}
.btn:hover{

background:#D4AF37;

color:black;

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(212,175,55,.25);

}
.scroll-indicator{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

font-size:34px;

color:#D4AF37;

animation:bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translate(-50%,0);

}

40%{

transform:translate(-50%,-12px);

}

60%{

transform:translate(-50%,-6px);

}

}
.tagline{

color:#D4AF37;

font-size:16px;

letter-spacing:5px;

text-transform:uppercase;

margin-bottom:18px;

font-weight:500;

}


.hero-image img{

    width:100%;
    height:84%;

    object-fit:contain;

    opacity:.50;

    border-radius:20px;

    filter:
        brightness(.68)
        contrast(1.05)
        saturate(.9);

    box-shadow:0 25px 70px rgba(0,0,0,.6);

    transition:.5s;

}

.hero-image img:hover{

transform:scale(1.02);

}
.hero-left{

    width:55%;
    z-index:2;

}

.hero-image{

    position:absolute;

    right:10px;
    bottom:0;

    width:42%;
    height:85%;

    display:flex;
    justify-content:flex-end;
    align-items:flex-end;

    overflow:hidden;

    z-index:0;

}


.hero-image img:hover{

    opacity:.90;

}

.brand-title{

    font-family:"Cormorant Garamond",serif;

    font-size:60px;

    line-height:.9;

    letter-spacing:3px;

    margin-bottom:25px;
    white-space:nowrap;

}
.gold-a{

    color:#D4AF37;

    font-style:normal;

    display:inline-block;

    transform:scale(1.08);

    margin:0 4px;

    text-shadow:0 0 10px rgba(212,175,55,.18);

}
.gallery{

padding:120px 8%;

background:#0f0f0f;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title p{

color:#D4AF37;

letter-spacing:5px;

font-size:14px;

margin-bottom:15px;

}

.section-title h2{

font-family:"Cormorant Garamond",serif;

font-size:52px;

font-weight:600;

}
.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}
.art-card{

    position:relative;

    background:linear-gradient(
    135deg,
    #f8e7a0 0%,
    #d4af37 25%,
    #b8860b 50%,
    #d4af37 75%,
    #f8e7a0 100%
);
    padding:5px;

    border-radius:4px;

    overflow:hidden;

    border:1px solid #b78f22;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.55),
        inset 0 -1px 2px rgba(120,90,0,.35),
        0 10px 22px rgba(0,0,0,.25);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}

.art-card img{

    display:block;

    width:100%;

    height:320px;

    object-fit:cover;

    border:2px solid #f8f4e3;

    border-radius:2px;

}

.art-card:hover{

    transform:translateY(-8px);

    box-shadow:

        inset 0 1px 1px rgba(255,255,255,.75),

        inset 0 -2px 4px rgba(90,65,0,.35),

        0 20px 35px rgba(0,0,0,.35);

}

.art-card:hover img{

    transform:scale(.92);

    object-fit:contain;

    background:#0f0f0f;

    box-shadow:
        0 25px 50px rgba(0,0,0,.45);

}


.instagram-box{
    padding:38px 45px;
    max-width:1050px;
    margin:70px auto 0;

    text-align:center;

    background:#151515;

    border-radius:18px;

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

    transition:.35s;

}

.instagram-box:hover{

    border-color:#D4AF37;

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

}

.instagram-box h2{

    font-family:"Cormorant Garamond",serif;

    font-size:36px;

    margin-bottom:14px;

}

.instagram-box p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:20px;

    font-size:17px;

}
.instagram-profile{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:10px 22px;

    border-radius:50px;

    background:#101010;

    margin-bottom:20px;

}

.instagram-profile img{

    width:20px;

    height:20px;

    object-fit:contain;

}

.instagram-profile span{

    font-size:20px;

    color:#D4AF37;

    letter-spacing:1px;

}
.instagram-box a{

    color:#D4AF37;

    text-decoration:none;

    font-size:20px;

    letter-spacing:1px;

    transition:.3s;

}

.instagram-box a:hover{

    letter-spacing:3px;

}

/*======================
     CLASSES SECTION
=======================*/

.classes{

    display:flex;

    justify-content:center;

    padding:60px 8%;

    background:#111;

}

.classes-left{

    width:100%;
    max-width:760px;

    background:#171717;

    padding:42px;

    border-radius:22px;

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

    box-shadow:
        0 18px 45px rgba(0,0,0,.45);

    transition:all .35s ease;

    margin:0 auto;

}
   .classes-left:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 25px rgba(212,175,55,.08);

}

.classes-divider{

    width:150px;

    height:2px;

    background:#D4AF37;

     margin-left:auto;
    margin-right:0;
}

.classes-tag{
    font-family:"Cormorant Garamond", serif;
    font-size:42px;
    letter-spacing:1px;
    font-weight:500;
    color:#D4AF37;
    margin-bottom:10px;
    text-align:left;
}

.classes-header h2{
    font-family:"Cormorant Garamond", serif;
    font-size:32px;
    font-weight:500;
    color:#ffffff;
    line-height:1.15;
    letter-spacing:1px;
    margin-bottom:3px;
    text-align:right;
}

.classes-header h3{
    font-family:"Cormorant Garamond", serif;
    font-size:26px;
    font-weight:400;
    font-style:italic;
    color:#D4AF37;
    letter-spacing:.5px;
    margin-bottom:8px;
    text-align:right;
}
.classes-text{

    color:#d6d6d6;

    font-size:18px;

    line-height:1.8;

    margin-bottom:28px;

}

.class-features{

    list-style:none;

    margin-bottom:26px;

}
.feature-icon{

    width:28px;

    height:28px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-right:14px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    font-size:14px;

    font-weight:700;

    box-shadow:0 4px 12px rgba(212,175,55,.25);

}

.class-features li{

    display:flex;

    align-items:center;

    padding-bottom:14px;

    margin-bottom:18px;

    border-bottom:1px solid rgba(255,255,255,.06);

}
.class-features li:last-child{

    border-bottom:none;

    margin-bottom:0;

}
.classes-section{

    padding:60px 8% 90px;

    background:
linear-gradient(
180deg,
#111 0%,
#141414 50%,
#101010 100%
);

}

.classes-header{

    
    margin:0;

    text-align:left;

    color:#D4AF37;

    font-size:18px;

    letter-spacing:4px;

    text-transform:none;

    font-weight:10;

}
.join-caption{
    color:#D4AF37;
    font-size:26px;
    font-family:"Cormorant Garamond", serif;
    font-style:italic;
    margin:30px 0 14px;
}

.join-note{
    color:#d4af37;
    font-size:16px;
    font-style:normal;
    margin-top:25px;
    margin-bottom:12px;
    letter-spacing:.5px;
    opacity:.9;
    
}
.header-top{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:38px;

}

.header-photo{

    width:180px;

    height:180px;

    border-radius:50%;

    object-fit:cover;
     margin-left:-20px;

    border:3px solid #D4AF37;

    box-shadow: 0 12px 30px rgba(0,0,0,.45),
        0 0 18px rgba(212,175,55,.18);

    transition:.35s ease;

}
.header-photo:hover{

    transform:scale(1.05);

    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 28px rgba(212,175,55,.35);

}
.header-text{

    text-align:left;

}
.classes-header-wrapper{

    max-width:950px;

    margin:0 auto 50px;

}
.join-box{
    text-align:center;
    margin-top:35px;
}

.join-box .btn{
    display:inline-flex;
}
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

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

    background: #25D366;
    color: white;

    border-radius: 50%;

    text-decoration: none;

    font-size: 28px;

    box-shadow: 0 8px 25px rgba(0,0,0,.4);

    z-index: 2000;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.whatsapp-icon {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

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

@media (max-width: 700px) {

    /* HEADER */

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px 16px 8px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        z-index: 1000;
    }

    .logo-area {
       display: flex;
        align-items: center;
        gap: 9px;
    }

    .logo {
        width: 34px;
        height: 34px;
    }

    .logo-area h2 {
       font-size: 23px;
        line-height: 1;
    }

    nav {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    nav a {
        font-size: 13px;
        padding: 3px 2px;
        white-space: nowrap;
    }


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

    .hero {
        min-height: auto;

        padding: 145px 22px 70px;

        display: flex;
        flex-direction: column;

        text-align: center;
    }


    /* HERO LEFT */

    .hero-left {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
    }


    /* BRAND TITLE */

    /* THE BRANDING HEADLINE */
    .hero-left h1.brand-title,
    .hero-left h1.brand-title .gold-a {
        font-size: 46px !important;     /* Changes both the main text and the gold letter */
        letter-spacing: 1px !important;  
        line-height: 1.1 !important;
        white-space: nowrap !important;  /* Locks "TANYACRYLICS" securely onto 1 single line */
        text-align: center;
    }


    /* HERO TAGLINE */

    .hero-left p {
        font-size: 15px;

        line-height: 1.7;

        text-align: center;

        max-width: 330px;
    }


    /* HERO IMAGE */

    .hero-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 45px;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 340px;
        height: auto;
        object-fit: cover;
        opacity: 0.85;
    }


    /* BUTTONS */

    .buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;

        gap: 14px;

        margin-top: 30px;
    }

    .buttons a {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }


    /* SCROLL INDICATOR */

    .scroll-indicator {
        display: none;
    }


    /* ================= GALLERY ================= */

    .gallery {
        padding: 70px 22px 80px;
    }

    .gallery h2 {
        font-size: 32px;

        margin-bottom: 35px;

        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* GALLERY CARD */

    .art-card {
        width: 100%;
    }

    .art-card img {
        width: 100%;

        height: auto;

        display: block;
    }
    /* ================= CLASSES SECTION ================= */
    .classes-section {
        padding: 40px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* HEADER STRUCTURE RESET */
    .classes-header-wrapper,
    .classes-header {
        width: 100% !important;
        padding: 0 !important;
    }

    .header-top {
        display: flex !important;
        flex-direction: column !important; /* Stacks your photo above the workshop headings */
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* THE HEADSHOT PHOTO */
    .header-photo {
        width: 120px !important; /* Scales down your avatar photo safely for mobile views */
        height: 120px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }

    .header-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .classes-tag {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }

    .header-text h2 {
        font-size: 22px !important; /* Keeps "Let the canvas speak" readable without breaking lines boxily */
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }

    .header-text h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .classes-divider {
        width: 60px !important; /* Centers and cleans up the divider bar beneath headings */
        margin: 15px auto !important;
    }

    /* MAIN TEXT CONTENT COLUMN */
    .classes {
        width: 100% !important;
        padding: 0 !important;
        margin-top: 25px !important;
    }

    .classes-left {
        width: 100% !important;      /* Clears desktop float and expands text column to full width */
        float: none !important;      /* Drops any layout-breaking side-by-side laptop flows */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .classes-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
    }

    /* FEATURE CHECKLIST */
    .class-features {
        width: 100% !important;
        max-width: 340px !important; /* Keeps bullet points grouped together nicely while staying centered */
        padding: 0 !important;
        margin: 0 auto 30px !important;
        list-style: none !important;
        text-align: left !important; /* Left-aligns list items for better checklist readability */
    }

    .class-features li {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .feature-icon {
        color: #d4af37; /* Keeps your custom checkmarks distinct and styled */
        font-weight: bold !important;
    }

    /* CALL TO ACTION BOX */
    .join-box {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }

    .join-caption {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .join-box .btn.gold {
        width: 100% !important; /* Scales button to full box container bounds for quick finger taps */
        display: block !important;
        box-sizing: border-box !important;
        padding: 14px 20px !important;
    }

    .join-note {
        font-size: 12px !important;
        margin-top: 12px !important;
        opacity: 0.8 !important;
    }

    /* ================= INSTAGRAM BOX ================= */
    .instagram-section {
        padding: 50px 20px !important;
    }

    .instagram-section h2 {
        font-size: 28px !important;
        margin-bottom: 25px;
    }

    /* Overrides desktop wrappers so embeds scale properly on smaller touchscreens */
    .instagram-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        overflow: hidden; /* Prevents container-breaking embed script margins */
    }

    /* Forces direct iframe widgets or image cards to stay fluidly within smartphone screen margins */
    .instagram-box iframe, 
    .instagram-box blockquote,
    .instagram-box img {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }


    /* ================= WHATSAPP ================= */

    .whatsapp-float {
        width: 52px;

        height: 52px;

        right: 18px;

        bottom: 18px;
    }

    .whatsapp-icon {
        width: 28px;

        height: 28px;
    }

}
