:root {
    --primary-color: #006D77;
    --secondary-color: #8D99AE;
    --accent-color: #E76F51;
    --background-light: #EDF6F9;
    --text-dark: #2C3E50;
    --text-light: #FFFFFF;
    --gradient-start: #006D77;
    --gradient-end: #83C5BE;
    --card-shadow: rgba(0, 109, 119, 0.1);
}

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

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

/* Header/Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--text-light);
    box-shadow: 0 2px 5px var(--card-shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 1px 1px 1px var(--card-shadow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Common Section Styles */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

/* Hero Section */
.hero.personal {
    min-height: 100vh;
    background: var(--background-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    width: 100%;
    overflow-x: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.profile-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.profile-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--accent-color);
    z-index: 1;
    border-radius: 10px;
}

.profile-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px var(--card-shadow);
    display: block;
    object-fit: cover;
}

.profile-text {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.profile-text h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
    line-height: 1.4;
}

.profile-text p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icons {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* About Section */
.about {
    background: var(--text-light);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.expertise-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.expertise-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.expertise-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.working-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow);
}

/* Values Section */
.values {
    background: var(--background-light);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--background-light);
    padding: 5rem 2rem;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: left;
    position: relative;
    padding: 0.5rem 0;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-author {
    text-align: center;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .social-icons {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Services Section */
.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--text-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--card-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Portfolio Section */
.portfolio {
    background: var(--text-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Photography Services Section */
.photography {
    background: var(--background-light);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.pricing-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(141, 153, 174, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, var(--text-light) 0%, var(--background-light) 100%);
}

.featured-label {
    background: var(--accent-color);
    color: var(--text-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 1px 1px 1px var(--card-shadow);
    margin: 1rem 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features li {
    margin: 0.8rem 0;
    color: var(--text-dark);
}

/* Photo Gallery */
.gallery-container {
    max-width: 1200px;
    margin: 4rem auto;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 109, 119, 0.85));
    color: var(--text-light);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Booking Section */
.booking {
    background: var(--text-light);
    position: relative;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.calendar-wrapper {
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow);
    padding: 2rem;
    margin-top: 2rem;
}

.wpforms-container {
    margin-top: 2rem;
}

.wpforms-field {
    margin-bottom: 1.5rem;
}

.wpforms-field input,
.wpforms-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: 'Merriweather', serif;
    transition: border-color 0.3s ease;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.wpforms-submit-container {
    text-align: center;
}

.wpforms-submit {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.wpforms-submit:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .calendar-wrapper {
        padding: 1rem;
    }
}

/* Booking Form */
.booking-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--text-light);
    box-shadow: 0 3px 15px var(--card-shadow);
    border: 1px solid rgba(141, 153, 174, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: 'Merriweather', serif;
    background: var(--background-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.1);
    outline: none;
}

/* Contact Section */
.contact {
    background: var(--text-light);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    .testimonials-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    .profile-image {
        max-width: 280px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-image {
        max-width: 400px;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .profile-text {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero.personal {
        padding: 6rem 1rem 3rem;
    }
    
    .profile-image {
        max-width: 300px;
    }
    
    .profile-image::after {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .profile-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-text {
        text-align: center;
    }

    .profile-text h1 {
        font-size: 2.5rem;
    }

    .expertise-list {
        max-width: 500px;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--text-light);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(237, 246, 249, 0.1);
}

.footer a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}
