* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}


nav {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

nav .logo h1 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

/* Links */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e91e63;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}





/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    /* fills screen */
    background-position: center;
    /* keeps subject centered */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    animation: fadeInUp 2s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h1 span {
    color: #ffcc00;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 12px 30px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #e6b800;
}

.controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.control-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Next Section (black background) */
.about {
    background: #000;
    color: #fff;
    padding: 100px 10%;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

/* Animation */
/* .animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
} */


/* Collections Section */
.collections {
    background: #000;
    color: #fff;
    padding: 100px 8%;
    text-align: center;
}

.collections .section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #f5c542;
    /* gold */
    letter-spacing: 2px;
}

.collections .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #bbb;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease;
    opacity: 0;
    /* hidden before reveal */
    transform: translateY(50px);
}

.collection-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    color: #fff;
    text-align: left;
}

.collection-item .overlay h3 {
    font-size: 1.5rem;
    color: #f5c542;
    margin-bottom: 8px;
}

.collection-item .overlay p {
    font-size: 0.95rem;
    color: #ddd;
}

/* Scroll reveal animation */
/* .reveal.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
} */



/* About section animation */
.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Collections animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Testimonials ===== */
.testimonials {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.testimonials .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.testimonials .section-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
    color: #ccc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.client-info h4 {
    margin: 5px 0 2px;
    font-size: 1.1rem;
    color: #fff;
}

.client-info span {
    font-size: 0.9rem;
    color: #bbb;
}

/* Booking */
.booking {
    padding: 5rem 2rem;
    background: #111;
    color: #fff;
    text-align: center;
}

.booking .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.booking .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-info {
    text-align: left;
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8c537;
}

.booking-info ul {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.booking-info ul li {
    margin-bottom: 0.5rem;
}

.contact-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.booking-form form {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    background: #222;
    color: #fff;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #aaa;
}

.booking-form button {
    width: 100%;
    padding: 1rem;
    border: none;
    background: #f8c537;
    color: #111;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.booking-form button:hover {
    background: #fff;
    color: #111;
}

/* ===== GALLERY STYLING ===== */
.gallery {
    padding: 80px 0;
    background: #000;
    /* black background */
    text-align: center;
    color: #fff;
}

.gallery-filters {
    margin-bottom: 30px;
}

.filter-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 10px 18px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #c59d5f;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    opacity: 0;
    animation: fadeInUp 0.7s forwards;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Contact */
.contact {
    background: #000;
    color: #fff;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    color: #e6b800;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #1a1a1a;
}

.contact-form button {
    background: #e6b800;
    border: none;
    padding: 12px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #f5c542;
}

/* Footer */
.footer {
    background: #111;
    color: #bbb;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about h3 {
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #e6b800;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #1a1a1a;
}

.footer-newsletter button {
    padding: 10px 15px;
    background: #e6b800;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background: #f5c542;
}

html {
    scroll-behavior: smooth;
}


/* Responsive */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .collections {
        padding: 80px 6%;
    }

    .collections .section-title {
        font-size: 2.4rem;
    }

    .collections .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .collection-item .overlay h3 {
        font-size: 1.3rem;
    }

    .collection-item .overlay p {
        font-size: 0.9rem;
    }

    .about {
        padding: 80px 8%;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .testimonials {
        padding: 70px 15px;
    }

    .testimonials .section-title {
        font-size: 2.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .booking {
        padding: 4rem 1.5rem;
    }

    .booking .section-title {
        font-size: 2.2rem;
    }

    .booking .section-subtitle {
        font-size: 1rem;
    }

    .booking-grid {
        gap: 2rem;
    }

    .gallery {
        padding: 70px 15px;
    }

    .filter-btn {
        padding: 9px 16px;
        font-size: 0.95rem;
    }

    .gallery-grid {
        gap: 18px;
    }

    .contact {
        padding: 70px 15px;
    }

    .footer {
        padding: 50px 15px 25px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 220px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links a {
        padding: 15px;
        border-bottom: 1px solid #222;
    }

    .nav-links.show {
        max-height: 500px;
        /* expands on toggle */
    }

    .hero {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .collections {
        padding: 70px 5%;
    }

    .collections .section-title {
        font-size: 2rem;
    }

    .collections .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .collections-grid {
        gap: 20px;
    }

    .collection-item .overlay {
        padding: 15px;
    }

    .about {
        padding: 70px 6%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .testimonials {
        padding: 60px 10px;
    }

    .testimonials .section-title {
        font-size: 2rem;
    }

    .testimonials .section-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 25px;
    }

    .client-info img {
        width: 55px;
        height: 55px;
    }

    .booking {
        padding: 3.5rem 1rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        /* stack */
        text-align: left;
    }

    .booking-info {
        margin-bottom: 2rem;
    }

    .booking-form form {
        padding: 1.5rem;
    }

    .gallery {
        padding: 60px 12px;
    }

    .gallery-filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        margin: 6px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-item .overlay {
        font-size: 0.9rem;
        padding: 12px;
    }

    .contact {
        padding: 60px 15px;
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .social-links a {
        font-size: 18px;
        margin-right: 10px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }

    .hero-content {
        top: 45%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .controls {
        padding: 0 15px;
    }

    .control-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }

    .collections {
        padding: 60px 4%;
    }

    .collections .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .collections .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collection-item .overlay h3 {
        font-size: 1.2rem;
    }

    .collection-item .overlay p {
        font-size: 0.85rem;
    }

    .about {
        padding: 60px 5%;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-image img {
        max-width: 100%;
    }

    .testimonials {
        padding: 50px 8px;
    }

    .testimonials .section-title {
        font-size: 1.6rem;
    }

    .testimonials .section-subtitle {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .client-info h4 {
        font-size: 1rem;
    }

    .client-info span {
        font-size: 0.8rem;
    }

    .booking {
        padding: 3rem 0.8rem;
    }

    .booking .section-title {
        font-size: 1.8rem;
    }

    .booking .section-subtitle {
        font-size: 0.9rem;
    }

    .booking-info h3 {
        font-size: 1.2rem;
    }

    .booking-info ul li {
        font-size: 0.9rem;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .booking-form button {
        font-size: 1rem;
        padding: 0.9rem;
    }

    .gallery {
        padding: 50px 10px;
    }

    .gallery .section-title {
        font-size: 1.6rem;
    }

    .gallery .section-subtitle {
        font-size: 0.9rem;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* single column */
        gap: 12px;
    }

    .gallery-item .overlay {
        font-size: 0.85rem;
        padding: 10px;
    }

    .contact {
        padding: 50px 10px;
    }

    .contact-info h3 {
        font-size: 16px;
    }

    .social-links a {
        font-size: 16px;
        margin-right: 8px;
    }

    .footer {
        padding: 40px 10px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* stack all sections */
        text-align: center;
    }

    .footer-newsletter form {
        flex-direction: column;
        gap: 12px;
    }

    .footer-newsletter input {
        padding: 12px;
    }

    .footer-newsletter button {
        padding: 12px;
    }
}