/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2c2c2c;
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo .accent {
    color: #6B705C;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #2c2c2c;
}

.nav a:hover {
    color: #6B705C;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 8rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

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

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 800;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #6B705C;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   SECTION HEADER
   ============================================ */

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

.section-header h3 {
    position: relative;
    display: inline-block;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6B705C;
}

/* ============================================
   REEL SECTION
   ============================================ */

.reel {
    padding: 5rem 0;
    background-color: #ffffff;
}

.reel-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   WORK SECTION / PORTFOLIO GRID
   ============================================ */

.work {
    padding: 5rem 0;
    background-color: #fafafa;
}

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

.portfolio-item {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(107, 112, 92, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.view-btn {
    background-color: #ffffff;
    color: #6B705C;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #6B705C;
    color: #ffffff;
}

.portfolio-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c2c2c;
}

.category-label {
    padding: 0 1.5rem 1.5rem;
    color: #6B705C;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.service-card {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #6B705C;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.service-card h4 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.deliverables {
    list-style: none;
    margin-bottom: 1.5rem;
}

.deliverables li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.deliverables li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6B705C;
    font-weight: bold;
}

.price {
    font-weight: 600;
    color: #6B705C;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 5rem 0;
    background-color: #fafafa;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B705C;
    box-shadow: 0 0 0 3px rgba(107, 112, 92, 0.1);
}

.submit-btn {
    background-color: #6B705C;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: #6B705C;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #555;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #6B705C;
    border-radius: 4px;
    color: #6B705C;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: #6B705C;
    color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #888;
    font-size: 0.95rem;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 4px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-body {
    padding: 2rem;
}

.modal-body iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.modal-details {
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.modal-details h4 {
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.modal-details ul {
    list-style: none;
}

.modal-details li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.modal-details strong {
    color: #2c2c2c;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero {
        padding: 4rem 2rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .reel {
        padding: 3rem 0;
    }

    .work {
        padding: 3rem 0;
    }

    .services {
        padding: 3rem 0;
    }

    .about {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .section-header h3::after {
        width: 40px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-body iframe {
        height: 250px;
    }
}

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

    .header {
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .nav ul {
        gap: 0.75rem;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .portfolio-thumbnail {
        height: 200px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .contact-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .submit-btn {
        align-self: center;
    }

    .footer {
        font-size: 0.85rem;
    }
}
/* Layout containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero */
.hero {
  padding: 5rem 0 3rem;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy {
  flex: 1 1 320px;
}
.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-copy p {
  max-width: 520px;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
}
.btn-primary {
  background: #111;
  color: #fff;
}
.btn-secondary {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}

/* Sections */
.section-header {
  text-align: left;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

/* Grids */
.services-grid,
.work-grid,
.process-steps {
  display: grid;
  gap: 2rem;
}
.services-grid,
.work-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards */
.service-card,
.work-card,
.process-step {
  border: 1px solid #e1e1e1;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #fff;
}

/* Simple responsive tweak */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
  }
}
