/* General Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Using Inter font */
    color: #fff; /* Light text for dark background */
    background-color: #000; /* Dark overall background */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header/Hero Section */
.hero-section {
    position: relative;
    height: 70vh; /* Reduced height for landing page */
    background: url('woman-holiday-journey-travel-relaxation.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100; /* Ensure navbar is always above hero content */
}

.logo {
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-radius: 4px; /* Rounded corners */
}

.nav-links a:hover {
    color: #ccc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hero-content {
    z-index: 1; /* Ensure content is above overlay */
    margin-bottom: 5vh; /* Adjust as needed for reduced height */
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; /* Rounded corners */
}

.btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* Burger Menu Styles */
.burger-menu {
    display: none; /* Hidden by default, shown on mobile */
    cursor: pointer;
    z-index: 101; /* Ensure burger menu is above everything */
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Featured Portfolio Section */
.featured-portfolio-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    position: relative; /* For absolute positioning of random images */
    overflow: hidden; /* To contain rotated images */
}

.featured-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* For positioning random images relative to this wrapper */
    padding: 50px 0; /* Space for random images */
}

.main-featured-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    max-width: 500px; /* Main image bigger */
    width: 100%;
    z-index: 1; /* Main item is below random images */
    position: relative;
}

.main-featured-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Rounded corners for image */
}

.image-caption {
    font-size: 1.1em;
    color: #aaa;
    margin-top: 20px;
    font-style: italic;
}

.random-images-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none; /* Allows clicks to pass through to elements below unless hovered */
    z-index: 2; /* Random images container is above main item */
}

.random-image {
    position: absolute;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.5s ease; /* Smooth hover effect */
    /* Base sizes for desktop (your original large sizes) */
    width: 300px;
    height: 300px;
    z-index: 3; /* Ensuring individual images are above others in the container */
}

.random-image:hover {
    transform: scale(1.05) rotate(0deg) !important; /* Straighten and slightly enlarge on hover */
    z-index: 4; /* Bring to very front on hover */
    pointer-events: auto; /* Enable clicks on hover */
}

/* Desktop positioning for random images */
.img-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.img-2 {
    top: 50%;
    left: 10%;
    transform: rotate(25deg);
}

.img-3 {
    top: 5%;
    right: 5%;
    transform: rotate(10deg);
}

.img-4 {
    width: 200px; /* Specific original size for img-4 */
    height: 220px; /* Specific original size for img-4 */
    top: 60%;
    right: 0%;
    transform: rotate(-30deg);
}


/* Existing Portfolio Section */
.portfolio-section {
    background-color: #1a1a1a; /* Darker background for this section */
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 1.2em;
    color: #888;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: lowercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    background-color: #0d0d0d;
    padding-bottom: 20px;
    border-radius: 12px; /* Rounded corners */
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px; /* Rounded corners for image */
}

.portfolio-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: normal;
}

.portfolio-item .see-more {
    font-size: 0.8em;
    color: #aaa;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    border-radius: 4px; /* Rounded corners */
}

.portfolio-item .see-more:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Contact Section (existing) */
.contact-section {
    position: relative;
    height: 70vh;
    background: url('Assets/Couples/high-angle-bride-groom-posing-with-flowers.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.contact-content {
    z-index: 1;
}

.contact-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: normal;
}

.contact-content p {
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Contact Page */
.contact-page-section {
    background-color: #0d0d0d;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    margin-top: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: calc(100% - 20px); /* Account for padding */
    padding: 12px;
    border: 1px solid #444;
    background-color: #222;
    color: #fff;
    border-radius: 8px; /* Rounded corners */
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #888;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 15px 30px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full width button */
}

.submit-btn:hover {
    background-color: #555;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.contact-info {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: invert(100%); /* Make placeholder icons white */
    border-radius: 50%;
}

.social-icon:hover {
    background-color: #555;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.phone-number p {
    font-size: 1.1em;
    color: #ccc;
    transition: color 0.3s ease;
}

.phone-number p:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


/* Footer */
.footer {
    background-color: #000; /* Black background */
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    border-top: 1px solid #1a1a1a;
}


/* --- Responsive Adjustments --- */

/* Tablets (min-width: 769px and max-width: 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    /* Navbar and general text sizes can be adjusted if desired for tablets */
    .nav-links li {
        margin-left: 20px; /* Slightly less space for nav links */
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    /* Main Featured Item adjustments for tablets */
    .main-featured-item {
        max-width: 500px; /* Can remain same as desktop or slightly smaller */
    }

    /* Random images - Keep them visible but smaller */
    .random-image {
        width: 180px; /* Smaller than desktop */
        height: 180px;
    }

    /* Adjust positions to ensure they are not fully covered */
    .img-1 {
        top: 10%;
        left: 5%;
        transform: rotate(-15deg);
    }

    .img-2 {
        top: 60%; /* Shifted down to be more visible */
        left: 10%;
        transform: rotate(25deg);
    }

    .img-3 {
        top: 15%; /* Shifted down */
        right: 5%;
        transform: rotate(10deg);
    }

    .img-4 {
        width: 320px; /* Specific size for img-4 on tablets */
        height: 290px;
        top: 65%; /* Shifted down */
        right: 10%;
        transform: rotate(-30deg);
    }
}


/* Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.5s ease-in;
        padding-top: 80px;
        z-index: 99;
    }

    .nav-links li {
        opacity: 0; /* Hidden by default for fade-in effect */
        margin: 20px 0;
    }

    .nav-links.nav-active {
        transform: translateX(0%); /* Show when active */
    }

    .nav-links.nav-active li {
        /* This is handled by the JavaScript now for staggered animation */
        opacity: 1;
    }

    .burger-menu {
        display: block; /* Show burger menu on mobile */
    }

    .burger-menu.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger-menu.toggle .line2 {
        opacity: 0;
    }
    .burger-menu.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section adjustments for mobile */
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    /* Featured Portfolio Section adjustments for mobile (maintaining layout) */
    .featured-content-wrapper {
        padding: 20px 0;
    }

    .main-featured-item {
        max-width: 85%; /* Adjust main item width to allow more space for random images */
        padding: 15px;
    }

    /* Random images - bigger and positioned to not be completely covered */
    .random-image {
        width: 150px; /* Moderate size for mobile */
        height: 150px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    /* Reposition for mobile to ensure visibility and prevent full overlap */
    .img-1 {
        top: 5%;
        left: 2%; /* Closer to edge */
        transform: rotate(-10deg); /* Slightly less rotation */
    }

    .img-2 {
        width: 150px;
        height: 150px;
        top: 55%; /* Moved much lower */
        left: -5%; /* Can even go slightly off-screen for effect, but visible */
        transform: rotate(15deg); /* Slightly less rotation */
    }

    .img-3 {
        top: 5%;
        right: 2%; /* Closer to edge */
        transform: rotate(5deg); /* Slightly less rotation */
    }

    .img-4 {
        width: 190px; /* Smallest of the random images on mobile */
        height: 190px;
        top: 40%; /* Moved much lower */
        right: -2%; /* Can even go slightly off-screen */
        transform: rotate(-15deg); /* Slightly less rotation */
    }

    /* Portfolio Grid - stacks vertically on small screens */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item img {
        height: 300px;
    }

    /* Contact Section adjustments for mobile */
    .contact-content h2 {
        font-size: 2em;
    }

    .contact-content p {
        font-size: 0.9em;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-info {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }

    .phone-number p {
        font-size: 1em;
    }
}

/* Smaller Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8em;
    }

    .section-title {
        font-size: 1em;
    }

    /* Random images - further adjustments for very small screens */
    .random-image {
        width: 120px; /* Even smaller for very small screens */
        height: 120px;
    }

    .img-1 { top: 3%; left: 0%; }
    .img-2 { top: 40%; left: -8%; }
    .img-3 { top: 3%; right: 0%; }
    .img-4 { top: 35%; right: -2%; }

    .portfolio-item h3 {
        font-size: 1.2em;
    }

    .portfolio-item .see-more {
        font-size: 0.7em;
    }

    .contact-content h2 {
        font-size: 1.8em;
    }

    .contact-content p {
        font-size: 0.8em;
    }
}

/* New/Uncategorized Styles (Integrate these into relevant sections if possible) */
.pride {
    font-weight: 900;
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 30px; /* Consolidated duplicate */
    color: wheat;
}

.image-text-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #000000;
    text-align: center;
    color:wheat;
    padding: 20px;
}

.content h2 {
    color: wheat;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin-bottom: 30px;
}

.text-columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    text-align: left;
}

.column {
    flex: 1;
}

.grid img { /* This rule was inside a redundant media query, moved out */
    width: 100%;
    height: 150px; /* Fixed height for all images */
    object-fit: cover; /* Ensures images scale properly */
    border-radius: 10px;
    border: 2px solid #000000; /* Black border by default */
    transition: border-color 0.3s ease; /* Smooth transition for hover effect */
}

/* Keyframes for staggered nav link animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}