
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
body {
    font-family: 'Lato', sans-serif;
    background-color: #F8F8F8;
    color: #2C3E50;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
}
header .logo:hover {
    transform: scale(1.1);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #D4A373;
    transition: width 0.3s ease;
}
nav a:hover {
    color: #D4A373;
}
nav a:hover::after {
    width: 100%;
}

/* Scroll effect */
header.scrolled {
    background: #2C3E50;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
header.scrolled nav a {
    color: #fff;
}
header.scrolled nav a:hover {
    color: #D4A373;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    animation: slideDown 1s ease;
}
.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: slideUp 1s ease;
}
.btn {
    background: #D4A373;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover {
    background: #A67C52;
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio {
    padding: 50px 20px;
    text-align: center;
}
.portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #F8F8F8;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}
.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}
.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
    border-color: #D4A373;
    box-shadow: 0 0 8px rgba(212,163,115,0.3);
}
textarea {
    height: 120px;
}
button {
    background: #D4A373;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}
button:hover {
    background: #A67C52;
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #2C3E50;
    color: #fff;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
