@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

html {
    background: url('../img/home_background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

body {
    background: transparent;
    min-height: 100vh;
    color: white;
    position: relative;
}

.hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
}

header {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 999;
}

.bg-dark {
    background: rgba(10, 10, 10, 0.7) !important;
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 40px;
    font-family: 'Caveat';
    color: white;
    margin-left: 50px;
}

nav ul {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 60px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Unicase';
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d63384;
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons i {
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.icons i:hover {
    color: #d63384;
}

.flex-grow-1 {
    display: grid;
}
/* Hero text */
.hero-text {
    text-align: center;
    max-width: 800px;
    margin: auto;
    z-index: 1;
    padding-top: 200px;
}

.hero-text h2 {
    font-size: 60px;
    font-weight: 500;
}

.hero-text h2 span {
    font-family: 'Caveat';
    font-style: italic;
}

.hero-text h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 15px 0;
}

.hero-text p {
    font-size: 16px;
    font-family: 'Cormorant Unicase';
    font-weight: 200;
    margin: 15px 0;
}

/* Button */
.btn {
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-family: 'Cormorant Unicase';
}

.btn:hover {
    background: #d63384;
    color: white;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    font-family: 'Cormorant Unicase';
    font-size: 14px;
    text-align: center;
}

footer a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: #d63384;
}

footer p {
    margin-bottom: 10px;
}

footer div {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }
    .hero-text h2 {
        font-size: 48px;
    }
    .hero-text h3 {
        font-size: 24px;
    }
}