/*
Theme Name: Peach Holding Page
Description: A minimal holding page theme for Peach. home and lifestyle shop
Version: 1.0
Author: Peach
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Crimson+Text:wght@400;600&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Playfair Display', 'Crimson Text', Georgia, serif;
}

body {
    background-color: #f6f8f6; /* Light sage green to complement #68906d */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main container */
.holding-page-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Logo styles */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 300px;
    height: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(104, 144, 109, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Strapline styles */
.strapline {
    font-size: 24px;
    font-weight: 400;
    color: #68906d;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        width: 250px;
        height: 250px;
    }
    
    .strapline {
        font-size: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
        height: 200px;
    }
    
    .strapline {
        font-size: 18px;
        padding: 0 15px;
    }
    
    body {
        padding: 15px;
    }
}

@media (max-width: 320px) {
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .strapline {
        font-size: 16px;
    }
}