/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #f8f9fa;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-color: #e1e1e1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: #d35400;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #e6e6e6;
    color: var(--primary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
    position: relative;
    padding-bottom: 1.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.logo h1 span {
    font-weight: 700;
    color: var(--secondary-color);
}

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu li a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1513694203232-719a280e022f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero h2:after {
    display: none;
}

.hero p {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

/* Intro Section */
.intro {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-content h2:after {
    left: 0;
}

.intro-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    font-size: 1.4rem;
    font-style: italic;
}

/* Featured Section */
.featured {
    padding: 10rem 0;
}

.featured h2 {
    text-align: center;
    margin-bottom: 6rem;
}

.featured h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.featured-item {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.featured-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 10rem 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.philosophy h2 {
    color: var(--light-text);
}

.philosophy h2:after {
    background-color: var(--secondary-color);
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin: 5rem 0;
}

.pillar h3 {
    color: var(--light-text);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pillar h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 6rem;
}

.testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: none;
}

.testimonial p {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 3rem;
    position: relative;
}

.testimonial p:before,
.testimonial p:after {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial p:before {
    top: -2rem;
    left: -2rem;
}

.testimonial p:after {
    bottom: -4rem;
    right: -2rem;
}

.testimonial-author {
    margin-top: 2rem;
}

.testimonial-author p {
    margin-bottom: 0.5rem;
    font-style: normal;
    font-size: 1.6rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
}

.cta h2 {
    color: var(--light-text);
}

.cta h2:after {
    display: none;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.footer-column p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: var(--light-text);
    opacity: 0.8;
    font-size: 1.4rem;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #d35400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

.footer-bottom ul {
    display: flex;
    gap: 2rem;
}

.footer-bottom ul li a {
    color: var(--light-text);
    opacity: 0.6;
}

.footer-bottom ul li a:hover {
    opacity: 1;
}

/* Icon font for social media */
@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot');
    src: url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
         url('fonts/icomoon.woff') format('woff'),
         url('fonts/icomoon.ttf') format('truetype'),
         url('fonts/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
    content: "\ea92";
}
.icon-linkedin:before {
    content: "\eaca";
}
.icon-pinterest:before {
    content: "\ead1";
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .featured-grid,
    .philosophy-pillars {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .intro .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--light-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hero h2 {
        font-size: 4.2rem;
    }
    
    .hero p {
        font-size: 2rem;
    }
    
    .featured-grid,
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 3.6rem;
    }
    
    .hero p {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .testimonial p {
        font-size: 1.8rem;
    }
    
    .testimonial p:before,
    .testimonial p:after {
        font-size: 3rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content, 
.intro-image, 
.featured-item, 
.pillar, 
.testimonial {
    animation: fadeIn 1s ease-out forwards;
}

.featured-item:nth-child(2) {
    animation-delay: 0.2s;
}

.featured-item:nth-child(3) {
    animation-delay: 0.4s;
}

.pillar:nth-child(2) {
    animation-delay: 0.2s;
}

.pillar:nth-child(3) {
    animation-delay: 0.4s;
}