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

:root {
    --primary-color: #7B2149;
    --gold-color: #D4AF37;
    --light-gold: #F4E4BC;
    --cream: #FFF8E7;
    --dark-text: #333;
    --light-bg: #FAF8F5;
    --white: #FFFFFF;
    --thai-red: #C41E3A;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--cream);
}

/* Thai Ornamental Borders */
.thai-border {
    height: 40px;
    background: linear-gradient(90deg, var(--gold-color) 0%, transparent 50%, var(--gold-color) 100%);
    position: relative;
    margin: 2rem 0;
}

.thai-border::before,
.thai-border::after {
    content: "❦";
    position: absolute;
    color: var(--gold-color);
    font-size: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.thai-border::before {
    left: 20px;
}

.thai-border::after {
    right: 20px;
}

/* Traditional Thai Pattern Background */
.thai-pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--gold-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, var(--gold-color) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, var(--gold-color) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, var(--gold-color) 0%, transparent 50%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
}

/* Thai Lotus Pattern */
.lotus-decoration {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: radial-gradient(circle, var(--gold-color) 30%, transparent 30%);
    position: relative;
}

.lotus-decoration::before,
.lotus-decoration::after {
    content: "✿";
    position: absolute;
    color: var(--gold-color);
    font-size: 2.5rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Header with traditional styling */
header {
    background: linear-gradient(to bottom, var(--primary-color), #8B2859);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--gold-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-color), #F4E4BC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--light-gold);
    font-size: 1.2rem;
}

.logo-text {
    color: var(--light-gold);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--light-gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

nav a:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--white);
}

/* Hero Section with Thai temple roof style */
.hero {
    background: linear-gradient(to bottom, var(--cream) 0%, var(--light-bg) 100%);
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(251, 248, 245, 0.3), rgba(250, 248, 245, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.thai-greeting {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--thai-red);
    margin-bottom: 2rem;
    font-style: italic;
    background: linear-gradient(90deg, transparent, var(--light-gold), transparent);
    padding: 1rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

/* Traditional Frame for Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--gold-color);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "◈";
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gold-color);
    font-size: 1.5rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Services Section with Traditional Cards */
.services {
    padding: 4rem 2rem;
    background-color: var(--white);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.services-subtitle {
    text-align: center;
    color: var(--gold-color);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

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

.service-card {
    background: linear-gradient(to bottom, var(--cream), var(--white));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--gold-color);
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card::before,
.service-card::after {
    content: "❋";
    position: absolute;
    color: var(--gold-color);
    font-size: 1.5rem;
}

.service-card::before {
    top: 15px;
    left: 15px;
}

.service-card::after {
    bottom: 15px;
    right: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(123, 33, 73, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: sepia(0.3);
}

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

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Thai Temple Style Section Divider */
.section-divider {
    text-align: center;
    margin: 3rem 0;
}

.divider-icon {
    font-size: 3rem;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Booking Section with Ornate Design */
.booking {
    background: linear-gradient(135deg, var(--primary-color), #8B2859);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking::before,
.booking::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.booking::before {
    top: -100px;
    left: -100px;
}

.booking::after {
    bottom: -100px;
    right: -100px;
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.thai-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    background: linear-gradient(135deg, var(--gold-color), #E5C045);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    text-shadow: none;
}

.btn-secondary:hover {
    background: var(--gold-color);
    color: var(--primary-color);
}

/* Contact Form with Thai Styling */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--gold-color);
    position: relative;
}

.contact-form::before {
    content: "࿊";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--gold-color);
    background: var(--white);
    padding: 0 1rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-color);
}

/* About Me Section */
.about-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--white), var(--cream));
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid var(--gold-color);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    height: 300px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    height: 200px;
}

.thai-certification {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--gold-color);
}

.thai-certification h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer with Traditional Elements */
footer {
    background: linear-gradient(to bottom, #333, #1a1a1a);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-color), var(--thai-red), var(--gold-color));
}

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

.footer-section h3 {
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.thai-blessing {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    font-style: italic;
    color: var(--light-gold);
}

/* WhatsApp Button with Thai Style */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-decoration: none;
    border: 3px solid var(--gold-color);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Modal with Thai Design */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background: linear-gradient(to bottom, var(--cream), var(--white));
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 3px solid var(--gold-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.close:hover {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .thai-greeting {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-gallery {
        margin-top: 2rem;
    }
} 