/* Luxury Style for Ellen Treven Design */

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

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #1a1a1a;
}

p {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #a07c5b;
    transition: color 0.3s ease;
}

a:hover {
    color: #8c6a4d;
}

/* Navigation */
.luxury-nav {
    background-color: #FFFFFF !important;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.luxury-nav .logo {
    float: left;
    margin-left: 20px;
    display: flex;
    align-items: center;
    height: 80px;
}

.luxury-nav .logo-img {
    height: 90px; /* Slightly larger to fit snugly */
    margin-left: 20px; /* Maintains balance with right side */
    display: block;
    margin-top: auto;
    margin-bottom: auto;
}

.luxury-nav ul {
    list-style: none;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.luxury-nav ul li {
    display: inline-block;
    margin-left: 35px;
}

.luxury-nav ul li a {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #1a1a1a;
}

.luxury-nav ul li a:hover {
    color: #a07c5b;
}

/* Hero Section */
.hero-luxury {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/unnamed (1).jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    backdrop-filter: blur(3px);
}

.hero-luxury h1 {
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.hero-luxury p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #a07c5b;
    color: #fff;
    border: 2px solid #a07c5b;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #8c6a4d;
    border-color: #8c6a4d;
    color: #fff;
}

/* Page Hero Section for Portfolio Pages */
.page-hero {
    height: 60vh;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px; /* Adjust for fixed header */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
}

/* Services Section */
.services {
    padding: 100px 5%;
    text-align: center;
    background-color: #fff;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #a07c5b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 30px;
    color: #a07c5b;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.portfolio h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #a07c5b;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px 10px;
    cursor: pointer;
    color: #666;
    padding: 8px 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    color: #a07c5b;
    border-bottom: 1px solid #a07c5b;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    gap: 30px;
    padding: 0 5%;
    justify-content: center;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 400px !important;
    height: 400px !important;
    margin: 0 auto;
    max-width: 400px;
    max-height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    max-width: 400px !important;
    max-height: 400px !important;
    border-radius: 15px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.portfolio-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.portfolio-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.portfolio-link {
    display: inline-block;
    color: #ffffff; /* Changing to white for better contrast against dark overlay */
    text-decoration: none;
    margin-top: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #a07c5b; /* Gold/bronze tone on hover for consistency */
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link i {
    margin-left: 10px;
    font-size: 12px;
}

/* Portfolio Pages */
.portfolio-section {
    padding: 40px 5%;
    text-align: center;
}

.portfolio-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-description {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 400px));
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 400px !important;
    height: 400px !important;
    margin: 0 auto;
    max-width: 400px;
    max-height: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    max-width: 400px !important;
    max-height: 400px !important;
    border-radius: 15px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.portfolio-overlay p {
    font-size: 16px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: #a07c5b;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact-form input, #contact-form select, #contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

#contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus {
    outline: none;
    border-color: #a07c5b;
}

#contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #a07c5b;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.submit-button:hover {
    background-color: #8c6a4d;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a07c5b; /* A natural gold/bronze tone for hover effect */
}

footer p {
    margin-top: 20px;
    color: #ffffff;
    font-size: 14px;
}

/* Photography Packages Page */
.packages-section {
    padding: 40px 5%;
    text-align: center;
    background-color: #fff;
}

.packages-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #a07c5b;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #a07c5b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.package-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.package-price {
    margin-bottom: 30px;
}

.package-price .price {
    font-size: 48px;
    font-weight: 300;
    color: #a07c5b;
    font-family: 'Playfair Display', serif;
}

.package-price .duration {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: #a07c5b;
    margin-right: 10px;
    font-size: 12px;
}

.package-samples {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.package-samples h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.package-samples p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.package-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #a07c5b;
    color: #fff;
    border: 2px solid #a07c5b;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.package-button:hover {
    background-color: #8c6a4d;
    border-color: #8c6a4d;
    color: #fff;
}

.packages-footer {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.packages-footer h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-item {
    text-align: center;
    padding: 20px;
}

.service-item i {
    font-size: 30px;
    color: #a07c5b;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.booking-form-section {
    background-color: #f9f9f9;
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.booking-form-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.booking-form-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a07c5b;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-booking-button {
    background-color: #a07c5b;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    width: 100%;
    margin-top: 20px;
}

.submit-booking-button:hover {
    background-color: #8c6a4d;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-form-section {
        padding: 30px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-nav {
        padding: 10px 20px;
        height: auto;
    }

    .luxury-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .luxury-nav ul li {
        margin: 0;
    }

    .luxury-nav ul li a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .logo-img {
        height: 50px;
    }
    
    .hero-luxury {
        height: 80vh;
        padding: 0 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
