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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
header {
    background: #000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
}

header, .navbar, .nav-links {
    position: relative;
    z-index: 1000;
}

.slideshow-container,
.slide,
.fade {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 200;
    color: #FFD700; /* Yellow accent */
    font-size: 1.4rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFD700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Images logo */
.img-logo{
    height: 250px;
    width: 300px;
    border-color: #111111;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem; /* space between buttons */
    margin-top: 1.5rem;
}

/* Make both buttons exactly the same width and centered */
.hero-grid .btn {
    width: 180px;
    text-align: center;
    font-size: 1rem;
    padding: 0.8rem 0;
    border-radius: 5px;
    font-weight: 600;
    background: #FFD700;
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Make buttons visually identical */
.hero-grid .btn,
.hero-grid button.btn {
    all: unset;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
    line-height: 1;
}
/* Hover state */
.hero-grid .btn:hover,
.hero-grid button.btn:hover {
    background: #fff;
    color: #000;
}
/* Stack buttons neatly on smaller screens */
@media (max-width: 600px) {
    .hero-grid {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-grid .btn,
    .hero-grid button.btn {
        width: 80%;
    }
}




.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #FFD700;
}

.hero p {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #fff;
}

/* About Preview */
.about-preview {
    padding: 4rem 2rem;
    text-align: center;
    background: #111;
}

.about-preview h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.about-preview p {
    max-width: 700px;
    margin: auto;
}

/* Footer */
footer {
    background: #000;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #222;
}

footer .socials a {
    color: #FFD700;
    margin: 0 0.5rem;
    text-decoration: none;
}

footer .socials a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }
}