/* Bastión Website - Common Styles */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant SC', serif;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #C6A664;
    text-align: center;
}

/* Navigation */
.nav-link {
    display: inline-block;
    position: relative;
    color: #F9F6F2;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: #C6A664;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #C6A664;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #F9F6F2;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #C6A664;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #C6A664;
    color: #121212;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: 1px solid #C6A664;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: #C6A664;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #C6A664;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: 1px solid #C6A664;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #C6A664;
    color: #121212;
}

/* Service Cards */
.service-card {
    padding: 1.5rem;
    background-color: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(198, 166, 100, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 166, 100, 0.3);
}

/* Portfolio Items */
.portfolio-item {
    overflow: hidden;
    position: relative;
}

.portfolio-item img {
    transition: transform 0.7s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Media Queries */
@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }
}
