* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;

    color: white;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/hero.png") center center/cover no-repeat;
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;

    background:
        radial-gradient(circle at left center,
            rgba(206, 176, 42, 0.3),
            transparent 35%),
        radial-gradient(circle at right center,
            rgba(218, 203, 152, 0.2),
            transparent 35%),
        linear-gradient(to right,
            rgba(0, 0, 0, .35),
            rgba(0, 0, 0, .70),
            rgba(0, 0, 0, .70),
            rgba(0, 0, 0, .35));

    z-index: -1;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 80px;
    padding: 24px;
}

.content {
    max-width: 700px;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    background:linear-gradient(
        180deg,
        #fff7cc 0%,
        #f7d774 15%,
        #d4af37 40%,
        #b8860b 60%,
        #f7d774 85%,
        #fff7cc 100%
    );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;

    text-shadow:
        0 0 10px rgba(212,175,55,.35),
        0 0 25px rgba(212,175,55,.25),
        0 0 45px rgba(212,175,55,.15);

    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 24px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 30px;
    margin-bottom: 35px;

}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    transition: .3s ease;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-4px) scale(1.03);
    filter: brightness(1.05);
}

.primary {
    background: linear-gradient(135deg,
            #25D366,
            #1ebe57);
    box-shadow: 0 0 20px rgba(37, 211, 102, .15);
}

.primary:hover {
    background: linear-gradient(135deg,
            #34e777,
            #25D366);
    box-shadow: 0 0 30px rgba(37, 211, 102, .2);
}

.instagram {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    box-shadow: 0 0 20px rgba(225, 48, 108, .15);
}

.instagram:hover {
    box-shadow: 0 0 30px rgba(225, 48, 108, .35);
}

.secondary {
    background: linear-gradient(135deg,
            #d4af37,
            #f4d03f);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(212, 175, 55, .35);
}

.secondary:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, .7);
}

.info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: .9;
}

@media(max-width:768px) {

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

}

.map-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 140px;


    border-radius: 20px;
    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .5);

    border: 1px solid rgba(255, 255, 255, .15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-page {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: white;
    position: relative;
    overflow-x: hidden;
}

.blog-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("images/hero.png") center center/cover no-repeat;
    z-index: -2;
}

.blog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    z-index: -1;
}

.blog-header {
    text-align: center;
    padding: 80px 20px 40px;
}

.blog-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;

    margin-bottom: 15px;
}

.blog-header p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: .9;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, .25);
    transition: .3s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, .1);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.blog-card {
    text-decoration: none;
    color: white;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .12);
}

.blog-card h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 15px;
}

.blog-card p {
    line-height: 1.7;
    opacity: .9;
}

@media(max-width:768px) {

    .blog-header h1 {
        font-size: 2.8rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width:768px) {

    body {
        overflow-y: auto;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-bottom: 40px;
    }

    .map-container {
        position: static;
        transform: none;

        width: 90%;
        height: 250px;

        margin: 30px auto;
    }

    .blog-card {

        padding: 12px;

    }

    .blog-container {

        margin: 0 auto;
        padding: 12px;

    }

    .blog-card h2 {

        font-size: 1.5rem;

    }
}

body {
    animation: fadeIn .2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.article-container{
    max-width:900px;
    margin:60px auto;
    padding:40px;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    border-radius:20px;
}

.article-container h1{
    font-family:'Cormorant Garamond',serif;
    font-size:3.5rem;

    margin-bottom:20px;
}

.article-container h2{
    font-family:'Cormorant Garamond',serif;
    color:#d4af37;
    margin-top:35px;
    margin-bottom:15px;
    font-size:2rem;
}

.article-container p{
    line-height:1.9;
    margin-bottom:18px;
}

.article-cta{
    margin-top:40px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

@media (max-width:768px){

    .article-container{
        margin:12px;
        padding:12px;
        border-radius:16px;
    }

    .article-container h1{
        font-size:2rem;
        line-height:1.1;
    }

    .article-container h2{
        font-size:1.3rem;
    }

    .article-container p{
        font-size:1rem;
        line-height:1.8;
    }

    .article-cta{
        flex-direction:column;
    }

    .article-cta .btn{
        width:100%;
        text-align:center;
    }

}

/* -------------------- */
/* Smooth Scroll */
/* -------------------- */

html{
    scroll-behavior:smooth;
    scrollbar-width:thin;
    scrollbar-color:#d4af37 #0f0f0f;
}

/* -------------------- */
/* Scrollbar */
/* -------------------- */

::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-track{
    background:#0f0f0f;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        #fff7cc,
        #d4af37,
        #b8860b
    );

    border-radius:20px;
    border:2px solid #0f0f0f;

    box-shadow:
        inset 0 0 6px rgba(255,255,255,.3),
        0 0 10px rgba(212,175,55,.3);
}

::-webkit-scrollbar-thumb:hover{
    background:linear-gradient(
        180deg,
        #fff7cc,
        #f6d365,
        #d4af37
    );
}