/* SilverHue Studios - Where Photography Becomes Art */

:root {
    /* Brass & Metallic */
    --brass: #B8860B;
    --brass-light: #DAA520;
    --brass-dark: #856D0E;
    --brass-shine: #FFD700;
    
    /* Mahogany & Woods */
    --mahogany: #4E2A1E;
    --mahogany-light: #6B3821;
    --mahogany-dark: #3D1F16;
    --wood-grain: #5C3317;
    
    /* Vintage Paper & Sepia */
    --cream: #FAF8F3;
    --parchment: #F4EFE6;
    --sepia: #E8DCC4;
    --sepia-dark: #C9B896;
    
    /* Leather & Accents */
    --leather: #654321;
    --leather-dark: #4A2F1A;
    --copper: #B87333;
    
    /* Text Colors */
    --text-primary: #2C1810;
    --text-secondary: #5D4037;
    --text-light: #8D6E63;
    
    /* Gradients */
    --gradient-brass: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #856D0E 100%);
    --gradient-mahogany: linear-gradient(135deg, #4E2A1E 0%, #6B3821 100%);
    --gradient-warm: linear-gradient(135deg, #F4EFE6 0%, #FAF8F3 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', 'Crimson Text', Georgia, serif;
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(78, 42, 30, 0.95) 0%, rgba(78, 42, 30, 0.85) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 3px solid var(--brass);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.header-ornament {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gradient-brass);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(184, 134, 11, 0.3));
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brass);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--brass-light);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px 40px;
    background: linear-gradient(rgba(46, 24, 16, 0.3), rgba(78, 42, 30, 0.6)), 
                url('best/Abigail at Palisades Park 2-2-small.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-frame {
    position: absolute;
    inset: 20px;
    border: 4px solid var(--brass);
    border-radius: 4px;
    box-shadow: 
        inset 0 0 30px rgba(184, 134, 11, 0.2),
        0 0 40px rgba(184, 134, 11, 0.3);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(46, 24, 16, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: var(--cream);
}

.hero-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.emblem-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-brass);
}

.emblem-text {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--brass-light);
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--cream);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(184, 134, 11, 0.3);
    margin-bottom: 15px;
}

.title-tagline {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--brass-light);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sepia);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--parchment);
    max-width: 700px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-brass {
    background: var(--gradient-brass);
    color: var(--mahogany-dark);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

.btn-brass:hover {
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.6);
    transform: translateY(-2px);
}

.btn-mahogany {
    background: var(--gradient-mahogany);
    color: var(--cream);
    border-color: var(--brass);
    box-shadow: 0 4px 15px rgba(78, 42, 30, 0.4);
}

.btn-mahogany:hover {
    box-shadow: 0 6px 25px rgba(78, 42, 30, 0.6);
    transform: translateY(-2px);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--brass-light);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    width: 24px;
    height: 24px;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--mahogany);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.header-ornament-small {
    width: 60px;
    height: 3px;
    background: var(--gradient-brass);
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
}

.section-header.light h2 {
    color: var(--cream);
}

.section-header.light .header-ornament-small {
    background: var(--cream);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 120px 40px;
    background: var(--gradient-warm);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(184, 134, 11, 0.02) 2px,
            rgba(184, 134, 11, 0.02) 4px
        );
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 80px;
}

.lead {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--mahogany);
    font-weight: 600;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.pillar {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 3px solid var(--brass);
    border-radius: 4px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 30px rgba(184, 134, 11, 0.05);
    transition: all 0.4s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 30px rgba(184, 134, 11, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.pillar-icon i {
    width: 40px;
    height: 40px;
    color: var(--mahogany-dark);
}

.pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mahogany);
    margin-bottom: 15px;
}

.pillar p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.services-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-mahogany);
    z-index: 0;
}

.services-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(184, 134, 11, 0.03) 10px,
            rgba(184, 134, 11, 0.03) 20px
        );
}

.services-section .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: rgba(244, 239, 230, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border: 3px solid var(--brass);
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: rgba(250, 248, 243, 1);
}

.service-card.featured {
    border-color: var(--brass-shine);
    border-width: 4px;
    background: rgba(250, 248, 243, 1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brass);
    color: var(--mahogany-dark);
    padding: 8px 24px;
    border-radius: 20px;
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-brass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.service-icon i {
    width: 36px;
    height: 36px;
    color: var(--mahogany-dark);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mahogany);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Gallery Preview */
.gallery-preview {
    padding: 120px 40px;
    background: var(--cream);
}

.gallery-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-style: italic;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.preview-frame {
    position: relative;
    aspect-ratio: 4/3;
    background: white;
    padding: 15px;
    border: 4px solid var(--brass);
    border-radius: 4px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 0 30px rgba(184, 134, 11, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.preview-frame.large {
    grid-column: span 2;
    grid-row: span 2;
}

.preview-frame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 0 30px rgba(184, 134, 11, 0.15);
}

.preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.1);
}

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

/* Packages Section */
.packages-section {
    padding: 120px 40px;
    background: var(--gradient-warm);
}

.packages-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 3px solid var(--brass);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.package-card.signature {
    border-color: var(--brass-shine);
    border-width: 4px;
}

.signature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-brass);
    color: var(--mahogany-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Crimson Text', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.5);
    z-index: 1;
}

.package-header {
    background: var(--gradient-mahogany);
    color: var(--cream);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-price {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brass-light);
}

.package-content {
    padding: 40px 30px;
}

.package-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.package-features i {
    width: 20px;
    height: 20px;
    color: var(--brass);
    flex-shrink: 0;
    margin-top: 3px;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: var(--gradient-mahogany);
    color: var(--cream);
    border: 2px solid var(--brass);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: var(--mahogany-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 42, 30, 0.4);
}

.package-btn.brass {
    background: var(--gradient-brass);
    color: var(--mahogany-dark);
}

.package-btn.brass:hover {
    background: var(--brass-dark);
    color: var(--cream);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(78, 42, 30, 0.9), rgba(46, 24, 16, 0.95)), 
                url('best/mountains-small.jpg') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-text {
    text-align: center;
    color: var(--cream);
}

.contact-text .lead {
    color: var(--sepia);
    margin-bottom: 25px;
}

.contact-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--parchment);
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(244, 239, 230, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--brass);
    border-radius: 4px;
}

.contact-item i {
    width: 32px;
    height: 32px;
    color: var(--brass-light);
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brass-light);
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--cream);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--brass-light);
}

.contact-cta {
    text-align: center;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: var(--mahogany-dark);
    color: var(--sepia);
    padding: 80px 40px 40px 40px;
    position: relative;
    border-top: 4px solid var(--brass);
}

.footer-ornament {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--gradient-brass);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brass-light);
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--sepia-dark);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sepia-dark);
}

.footer-links h4,
.footer-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--brass-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-info a {
    color: var(--sepia-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--brass-light);
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--sepia-dark);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-credit {
    text-align: right;
}

.footer-bottom a {
    color: var(--brass-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-frame.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 20px 60px 20px;
    }
    
    .hero-frame {
        inset: 10px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit {
        text-align: center;
    }
}

@media (max-width: 500px) {
    .logo {
        height: 60px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav a {
        font-size: 0.95rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-tagline {
        font-size: 1.1rem;
    }
}
