/* ===================================
   Color Palette
   - Black: #000000
   - White: #FFFFFF
   - Cream/Beige: #f4dfc8
   =================================== */

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Serif', serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: #000000;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 100px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-list a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

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

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

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f4dfc8;
    color: #000000;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero strong {
    color: #ffffff;
    font-weight: 700;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 44px;
    min-width: 44px;
}

.btn-primary {
    background-color: #f4dfc8;
    color: #000000;
    margin-top: 1rem;
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 223, 200, 0.4);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-small {
    background-color: #000000;
    color: #f4dfc8;
    border: 2px solid #f4dfc8;
}

.btn-small:hover {
    background-color: #f4dfc8;
    color: #000000;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 3rem 0;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.service-content p {
    color: #555;
    line-height: 1.7;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: 3rem 0;
    background-color: #000000;
    color: #ffffff;
}

.pricing .section-title {
    color: #000000;
}

.pricing .section-subtitle {
    color: #000000;
}

.pricing-table {
    margin-top: 3rem;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: #f4dfc8;
    color: #000000;
}

th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid #333;
    color: #ffffff;
}

tbody tr:hover {
    background-color: #252525;
}

tbody tr:last-child td {
    border-bottom: none;
}

.price-highlight {
    color: #f4dfc8;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f4dfc8;
    color: #000000;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .social-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services,
    .pricing {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    /* Responsive Table */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 2rem;
        border: 2px solid #333;
        border-radius: 10px;
        overflow: hidden;
    }

    td {
        border: none;
        position: relative;
        padding-left: 55%;
        padding-right: 0.75rem;
        text-align: right;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
        font-size: 0.9rem;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 0.75rem;
        font-weight: 700;
        text-align: left;
        color: #ffffff;
    }

    td:last-child {
        text-align: center;
        padding: 1rem 0.75rem;
    }

    td:last-child .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 280px;
    }

    .btn-small {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-image {
        height: 250px;
    }

    .footer-brand h3,
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .container {
        padding: 0 15px;
    }
}
