/* Interior Modern - Minimalist Aesthetics CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --int-primary: #1a1a1a;
    --int-accent: #c5a059;
    --int-bg: #fdfdfd;
    --int-gray: #777777;
    --int-light: #f4f4f4;
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--int-bg);
    color: var(--int-primary);
    line-height: 1.8;
}

h1, h2, h3, .serif {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.int-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-content span {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 14px;
    color: var(--int-accent);
    margin-bottom: 20px;
    display: block;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 10vh;
    width: 60%;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center center;
    background-size: cover;
    z-index: 1;
}

/* Projects Gallery */
.section-padding {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 4rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.project-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}

.project-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-item:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-1 { grid-column: span 8; height: 500px; }
.project-2 { grid-column: span 4; height: 500px; }
.project-3 { grid-column: span 4; height: 400px; }
.project-4 { grid-column: span 8; height: 400px; }

/* Testimonials */
.testimonial-row {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Form */
.contact-section {
    background: #111;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 20px 0;
    color: #fff;
    font-family: inherit;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--int-accent);
}

.btn-int {
    padding: 20px 50px;
    background: var(--int-accent);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

/* AOS Styles */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .hero-image { width: 50%; }
}

@media (max-width: 768px) {
    .int-hero { height: auto; padding: 120px 0; }
    .hero-image { position: relative; width: 100%; height: 400px; top: 0; margin-top: 40px; }
    .hero-content h1 { font-size: 3rem; }
    .project-1, .project-2, .project-3, .project-4 { grid-column: span 12; height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .testimonial-text { font-size: 1.8rem; }
}
