@import url('https://fonts.googleapis.com/css2?family=Sofia&display=swap');

:root {
    --radius: 8px;
    --copy: #4a4a4a;
    --secondary-bg: #fff9f9;
    --highlight: #d4a5a5;
    --primary: #9e7676;
}

.sofia-regular {
    font-family: "Sofia", serif;
    font-weight: 400;
    font-style: normal;
  }
  

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: var(--secondary-bg);
    min-width: 300px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s;
}

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




/* Navigation */
header {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight);
    font-family: 'sofia', serif;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 2rem;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: var(--highlight);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255,249,249,0.3), rgba(212,165,165,0.4)),
                url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #4a4a4a;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--highlight);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212,165,165,0.3);
}

.cta-button:hover {
    background: #c49393;
    transform: translateY(-2px);
    color: white;
}

/* Services Section */
.services {
    padding: 7rem 1rem;
    background: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-family: 'sofia', serif;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-description {
    color: #777;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 7rem 1rem;
    background: var(--secondary-bg);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-family: 'sofia', serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:nth-child(1) {
    background-image: url('/images/gallery/gallery-0.jpg');
}

.gallery-item:nth-child(2) {
    background-image: url('/images/gallery/gallery-1.jpg');
}

.gallery-item:nth-child(3) {
    background-image: url('/images/gallery/gallery-2.jpg');
}

.gallery-item:nth-child(4) {
    background-image: url('/images/gallery/gallery-3.jpg');
}

.gallery-item:nth-child(5) {
    background-image: url('/images/gallery/gallery-4.jpg');
}

/* Contact Section */
.contact {
    padding: 7rem 1rem;
    background: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-family: 'sofia', serif;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--secondary-bg);
    padding: 3rem;
    border-radius: 15px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, select, textarea {
    padding: 1rem;
    border: 2px solid #f3e5e5;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s;
}

textarea {
    height: 120px;
    resize: vertical;
    font-family: sans-serif;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--highlight);
}

button {
    background: var(--highlight);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212,165,165,0.3);
}

button:hover {
    background: #c49393;
    transform: translateY(-2px);
}

.contact-insta {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-insta a {
    white-space: nowrap;
}

.contact-insta svg {
    position: relative;
    top: 4px;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: #fff;
}

.footer-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.footer-section a {
    color: var(--highlight);
}

.footer-section a:hover {
    color: white;
}

svg.logo {display: none}

/* Responsive Design */
@media (max-width: 845px) {
    /* .nav-links {
        display: none;
    } */

    .nav-links a {display: none}
    .nav-links a.nav-insta {display: inline;}
    div.logo {
        display: none;
    }
    svg.logo {display: block}

    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-container {
        padding: 2rem;
    }
}


.nav-insta {
    position: relative;
    top: 5px;
}

.nowrap {
    white-space: nowrap;
}

.site-attribution {
    font-size: .7em;
}

.site-attribution a {
    color: var(--highlight);
}

.site-attribution a:hover {
    color: white;
}