/* =============== GLOBAL STYLES =============== */
:root {
    --primary-color: #1a2639;
    --secondary-color: #c19277;
    --accent-color: #d4a26f;
    --light-color: #f5f5f5;
    --dark-color: #333;
    --gray-color: #7d8597;
    --light-gray: #e9e9e9;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.underline {
    height: 3px;
    width: 70px;
    background-color: var(--secondary-color);
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* =============== NAVBAR =============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-menu a.btn {
    padding: 0.5rem 1.2rem;
}

.nav-menu a.btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* =============== HERO SECTION =============== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 38, 57, 0.7), rgba(26, 38, 57, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero .btn {
    margin: 0 0.5rem 1rem;
    animation: fadeIn 1.5s ease;
}

/* =============== ABOUT SECTION =============== */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-left {
    flex: 1.2;
}

.about-right {
    flex: 0.8;
}

.about-text {
    position: relative;
}

.about-image-small {
    float: right;
    width: 300px;
    height: 300px;
    margin: 0 0 20px 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.about-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.about-video h4 {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
}

.about-video video {
    width: 100%;
    display: block;
    background-color: #000;
}

.about-journey {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.about-journey h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

/* =============== SERVICES SECTION =============== */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    padding: 0 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    padding: 0 1.5rem;
}

.service-card .btn {
    margin-bottom: 1.5rem;
}

/* =============== PORTFOLIO CAROUSEL SECTION =============== */
.portfolio {
    background-color: var(--light-color);
}

.portfolio-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.carousel-track {
    display: flex;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.carousel-slide img::before {
    content: "Image Not Available";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    color: var(--gray-color);
    font-size: 1.2rem;
    text-align: center;
    font-family: var(--font-secondary);
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: left;
}

.slide-caption h4 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 20px;
}

.carousel-prev,
.carousel-next {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    max-width: 80%;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin: 0;
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-category-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-social-links {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-social-links p {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.portfolio-social-links .social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.portfolio-social-links .social-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.portfolio-social-links .social-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
}

/* =============== GALLERY SECTION =============== */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 250px;
    position: relative;
}

.video-placeholder {
    height: 100%;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-links {
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* =============== TESTIMONIALS SECTION =============== */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.client-info span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* =============== CONTACT SECTION =============== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.contact-info .social-links {
    margin-top: 2rem;
    text-align: left;
}

.contact-info .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--gray-color);
    text-align: center;
    line-height: 40px;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.contact-info .social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* =============== FOOTER =============== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 1rem;
}

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

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-nav ul li,
.footer-services ul li {
    margin-bottom: 0.75rem;
}

.footer-nav ul li a,
.footer-services ul li {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 0.75rem;
    color: var(--secondary-color);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* =============== ANIMATIONS =============== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== RESPONSIVE DESIGN =============== */
@media screen and (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image-small {
        float: none;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .about-left, .about-right {
        width: 100%;
    }
    
    .about-video {
        margin-top: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--box-shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-nav ul li a:hover {
        padding-left: 0;
    }
    
    .contact-info .social-links {
        text-align: center;
    }
}

.carousel-slide.image-error {
    background-color: #f8f8f8;
}

.image-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: var(--gray-color);
    text-align: center;
    padding: 2rem;
}

.image-fallback i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.image-fallback p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.image-fallback small {
    font-size: 0.8rem;
    opacity: 0.7;
    word-break: break-all;
} 

/* Portfolio Section Styles */
.portfolio {
    background: var(--bg-color);
}

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

.portfolio-nav-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.portfolio-nav-btn:hover,
.portfolio-nav-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.portfolio-category {
    margin-bottom: 60px;
    opacity: 1;
    transition: all 0.5s ease;
}

.portfolio-category.hidden {
    display: none;
}

.portfolio-category h3 {
    text-align: center;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-category > p {
    text-align: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    background: white;
}

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

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.portfolio-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio-nav-btn {
        width: 90%;
        max-width: 300px;
        margin-bottom: 5px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    .portfolio-category h3 {
        font-size: 1.6rem;
    }
    
    .portfolio-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 20px 15px 15px;
    }
    
    .portfolio-overlay h4 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .portfolio-item img {
        height: 180px;
    }
} 

@media screen and (max-width: 768px) {
    .about-image-small {
        float: none;
        width: 240px;
        height: 240px;
        margin: 0 auto 30px;
        display: block;
    }
} 