/* 
* SERYIL DESIGN - Interior Design Website
* Main Stylesheet
*/

/* Global Styles */
:root {
    /* Modern Color Palette */
    --primary-color: #c5a47e;
    --primary-dark: #b08e68;
    --secondary-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
    --text-color: #333;
    --light-text: #f8f9fa;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Utilities */
.text-shadow {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.z-index-1 {
    z-index: 1;
}

.bg-gold {
    background-color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 120vh;
    color: white;
    overflow: hidden;
}

/* Video Container */
.video-background {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    overflow: hidden;
    object-fit: cover;
}

.video-iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.2);
}

.video-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-logo {
    filter: drop-shadow(0 0 12px rgba(0,0,0,0.7));
}

/* Transition Navbar */
.transition-navbar {
    transition: all 0.3s ease;
    background-color: transparent;
}

.transition-navbar.scrolled {
    background-color: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Scroll Down Button */
.scroll-down-btn {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
    z-index: 2;
    transition: all 0.3s ease;
}

.scroll-down-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.navbar.transition-navbar.scrolled {
    background-color: #212529 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Portfolio Section */
/* Enhanced Projects Section Styling */

/* Section General Styling */
.projects-section {
    background-color: #F5ECE0;
    position: relative;
    padding: 100px 0;
}

/* Section Header Styling */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 30px auto 0;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: -1.5px;
}

.decorative-line::before {
    left: -10px;
}

.decorative-line::after {
    right: -10px;
}

/* Project Filters */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.filter-btn:hover::after {
    width: 30px;
}

.filter-btn.active {
    color: var(--primary-color);
    background-color: rgba(197, 164, 126, 0.1);
}

.filter-btn.active::after {
    width: 30px;
}

/* Simple Project Card Styling */
.projects-section {
    background-color: #F5ECE0;
    padding: 80px 0;
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.btn-view-more {
    display: inline-block;
    color: white;
    border: 1px solid white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-more:hover {
    background-color: #c5a47e;
    border-color: #c5a47e;
    color: white;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 100px 0;
}

.section-subtitle {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.about-image-container {
    position: relative;
    padding-bottom: 40px;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge .number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .label {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Stats Cards */
.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    background: #f9f9f9;
}

.map-container {
    height: 500px;
    border: 2px solid rgba(0,0,0,0.1);
}

.info-card {
    background: white;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .form-control {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197,164,126,0.2);
}

.btn-dark {
    background: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.text-muted {
    color: #999 !important;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 1000;
}

.whatsapp-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Offcanvas Menu */
.offcanvas-end {
    width: 300px;
    background: #1a1a1a;
}

.offcanvas-header {
    background: #333;
    color: #fff;
    padding: 1rem;
}

.offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.offcanvas-body ul {
    width: 100%;
    text-align: center;
}

.offcanvas-body ul > li a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 5px;
}

.offcanvas-body ul > li a:hover {
    background-color: rgba(197,164,126,0.2);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .project-card {
        height: 350px;
    }
    
    .about-main-img {
        height: 450px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        right: 20px;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .project-card {
        height: 300px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .about-main-img {
        height: 350px;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 15px;
        bottom: 15px;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
    }
    
    .experience-badge .label {
        font-size: 0.8rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .footer {
        text-align: center;
    }
    
    .social-links {
        margin-top: 1rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.whatsapp-button:hover {
background: #c5a47e;
transform: translateY(-3px) scale(1.1);
box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}

@media (max-width: 768px) {
.whatsapp-button {
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
font-size: 24px;
}
}



/*
    OUR WORKS PAGE
*/

.media-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
}

.video-card .overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
}